Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: Jun 12, 2026
Topics: 0 / Replies: 841
Reply
RE: Excel: Creating a list of unique cells based on multiple criteria including a date range.

It sounds to me like a pivot table would be ideal for this. Or Power Query, if you have it.

7 years ago
Reply
RE: Help with splitting macros - doesn't keep column format

Try modifying the copy/paste section to this: With FilterRange .AutoFilter Field:=NameCol, Criteria1:=UniqueNames(Index) .SpecialCells(xlCellT...

7 years ago
Forum
Reply
RE: count in same row of different column ????

You could use something like this: =SUMPRODUCT(0+(INDEX(B2:E2,1,N(IF(1,{1,4})))="Y")) which will check the 1st and 4th columns of the ...

7 years ago
Reply
RE: Formula for excel

You can use: =AVERAGE(IF(C3:V3<>"",(C3:V3-$C$2:$V$2)/$C$2:$V$2,"")) array-entered with Ctrl+Shift+Enter, then copied down.

7 years ago
Reply
RE: Use of Formulas to Define X-Axis in a Chart

Interestingly, it seems to be the combination of INDIRECT with ADDRESS. INDIRECT on its own works fine. As it happens, you can avoid both here by u...

7 years ago
Reply
RE: How to use Offset formula in reverse order? Or some other option

In B3: =INDEX('Reference tale sheet'!B:B,4+INT((ROWS($A$1:$A1)-1)/9)) Copy to C3, then you can copy and paste your 9*2 blocks.

7 years ago
Reply
RE: Use of Formulas to Define X-Axis in a Chart

INDIRECT expects a text address, not an actual cell reference (which is what it returns). So you can use that to provide the necessary starting cell f...

7 years ago
Reply
RE: Use of Formulas to Define X-Axis in a Chart

It needs to be: INDIRECT("Sheet1!"&ADDRESS($J$2,3)) to specify the sheet for the returned range.

7 years ago
Reply
RE: Filter table based on user filtered values

Assuming you can't simply apply the filter to the PQ output, here's one method per Chris Webb:

7 years ago
Forum
Reply
RE: Use of Formulas to Define X-Axis in a Chart

You have to include a sheet name in the INDIRECT part, otherwise there's no context as to what range you actually want.

7 years ago
Reply
RE: Has Excel had a recent upgrade that means the file size is much smaller?

If they’re files using PQ or data models, perhaps they’ve made improvements to the Vertipaq storage methods. Be interesting to see what Mynda hears fr...

7 years ago
Reply
RE: Has Excel had a recent upgrade that means the file size is much smaller?

Switching from the old BIFF8 (.xls/.xlt/.xla) format to any of the newer compressed formats (.xlsx/.xlsm/xlsb/.xlst/.xlam) would reduce the file size,...

7 years ago
Reply
RE: How to used exact match in this formula please

That's not quite what I suggested. It should be this: IF(EXACT('Data 2019'!$A$1:$A$517,$A$2) not this: IF(EXACT('Data 2019'!$A...

7 years ago
Reply
RE: How to used exact match in this formula please

You'd need: IF(EXACT('Data 2019'!$A$1:$A$517,$A$2) instead of: IF('Data 2019'!$A$1:$A$517=$A$2 Ideally, you'd also use...

7 years ago
Reply
RE: How to handle nulls in PQ?

Why not just filter them out?

7 years ago
Forum
Page 53 / 57
0