Forum

Derek Brown
@db325
Active Member
Joined: Jan 18, 2015
Topics: 0 / Replies: 19
Reply
RE: Conditional formatting for Subtotal rows

The example that you provided does not appear to be a PIVOT table and you have only applied conditional formatting to Column A - starting in Row 4. ...

8 years ago
Reply
RE: Conditional formatting for Subtotal rows

Could you be applying the conditional formatting ONLY to the pivot table? There is a way to overcome problems with pivot table conditional formatti...

8 years ago
Reply
RE: Controlling multiple pivot tables (separate cache) with one slicer

Thank you very much for the feedback. I am very pleased that you have been able to get a good solution to the problem. Well done!

8 years ago
Forum
Reply
RE: Extracting Excel file properties by Power Query

You could use a User Defined Function (UDF) to give you the information: Function Author() Author = ThisWorkbook.BuiltinDocumentProperties("Auth...

8 years ago
Forum
Reply
RE: Controlling multiple pivot tables (separate cache) with one slicer

Are you likely to have more than one workbook open at the same time? If so, the following may be of interest: If the workbook has a lot of con...

8 years ago
Forum
Reply
RE: Controlling multiple pivot tables (separate cache) with one slicer

It may not be relevant in this case but if the workbook is being opened on a network drive, that would increase the running time. In my last job I ...

8 years ago
Forum
Reply
RE: Create a function that May derive a number Excerpt from '1-90 Possibilmentenon Repetitive

Perhaps something like the following: Sub Test() Worksheets(1).Cells(1, 1).Interior.ColorIndex = 43 Worksheets(1).Cells(1, 1) = Int((90 - 1 +...

8 years ago
Forum
Reply
RE: Controlling multiple pivot tables (separate cache) with one slicer

In the jkp-ads example, there is a "Application.ScreenUpdating" line. I would put after it (at the beginning of the procedure) and before it at the en...

8 years ago
Forum
Reply
RE: How to Open an Excel Spreadsheet using the VBA by Power Point

Make the "On Error ...." line a comment line. I would then expect the "Workbooks.Open ...." line to generate an error. You need to "Reference" t...

8 years ago
Forum
Reply
RE: Controlling multiple pivot tables (separate cache) with one slicer

My first suspicion would be Excel calculation taking place (probably main times as changes are made). Try: Application.Calculation = xlCalculati...

8 years ago
Forum
Reply
RE: How to Open an Excel Spreadsheet using the VBA by Power Point

What error message to you get when the code runs? "ThisWorkbook" is only relevant when used in Excel VBA and would mean nothing to PowerPoint itsel...

8 years ago
Forum
Reply
RE: Controlling multiple pivot tables (separate cache) with one slicer

Perhaps the following will help: If you want to start learning VBA, have a look at the links in Post #9 in the following:

8 years ago
Forum
Reply
RE: Delete cells with "0" values

You could hide the "zeros" with cell formatting. For example: #,##0.00;-#,##0.00;; or #,##0;[Red]-#,##0;;

8 years ago
Reply
RE: Formula to add hours in Specific date and time range in Excel

See if the following gives you the solution: You may also find the following of interest:

8 years ago
Reply
RE: How to Extract the name before the first number

Try the following formula: =LEFT(A2,MIN(FIND({1,2,3,4,5,6,7,8,9,0},A2&1234567890))-1)

8 years ago
Forum
Page 1 / 2