Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Pivot Table: column not keeping format

If you're using the data model, you can specify the number format for measures and it will apply whenever the measure is added to your pivot.

4 years ago
Reply
RE: Only run macro if pivot table contains data

For a situation like this, it's probably simplest to just suppress the errors using something like: On Error Resume Next With ActiveSheet.ChartO...

4 years ago
Forum
Reply
RE: Advice on transforming data

Maybe something like this: let Source = Excel.Workbook(File.Contents("C:path to your file herePRE.xlsx"), null, true), PRE_Sheet = Source{[Ite...

4 years ago
Forum
Reply
RE: IF statement followed by a sum

0.2 rather than 0.02 I think. 😉

4 years ago
Reply
RE: Table Referencing Given the Cell Address

You can work out the offset between the cell's Column property and the Listobject.Range.Column, which will tell you the listcolumn number. From there ...

4 years ago
Forum
Reply
RE: VBA to Bold/Underline dates in Notes Columns

You can't format part of a formula result, so the formulas in column L on the Active projects tab would have to be converted to values - is that going...

4 years ago
Forum
Reply
RE: getting match and index to work

In f4: =INDEX(Lists!$C$4:$D$18,MATCH($B4,Lists!$B$4:$B$18,0),MATCH($C4,Lists!$C$3:$D$3,0)) and copy down. In G4: =INDEX(Lists!$E$4:$F$18,MATC...

4 years ago
Reply
RE: Row function in Power Query

Just add an index column starting at 1.

4 years ago
Forum
Reply
RE: countif with omission

You could also use something like: =SUM(COUNTIFS(B:B,{"Dog","Donkey"},C:C,"Black"))

4 years ago
Reply
RE: Add Create Outlook Folder to existing Macro that Creates Windows folder

You'll need something like this: Option Explicit Sub MakeFolders() Dim Folder As Range Dim FolderPath As String FolderPath = Range("MakeFolde...

4 years ago
Forum
Reply
RE: TextBox SUM

The basic code could be something like this: Dim counter as long for counter = 1 to 4 Dim RunningTotal as Double RunningTotal = Runni...

4 years ago
Forum
Reply
RE: Trouble with Nested IF (should I use AND and/or OR?)

To get the last number, you could also use: =LOOKUP(1E+100,C3:E3)

4 years ago
Reply
RE: VBA help

This looks a lot like an assignment? Also, you're supposed to mention if you cross-post:

4 years ago
Page 33 / 56