Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
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
Reply
RE: Break out dashboard

First off, it looks like you're using Google sheets, not Excel? The 1 doesn't make the formula dynamic, it's the value that is being looked up...

7 years ago
Reply
RE: Need Macro for deleting entire row, when value in all 4 cells of row less than qty 1

Just for info, you could also use an autofilter for that: Sub DelRowsLessThanOne() Application.ScreenUpdating = False With Range("A1").Current...

7 years ago
Forum
Reply
RE: VBA SCRIPT TO OFFSET SELECTED RANGE

There are plenty of ways but you haven't explained what you want. Do you want a prompt to specify how many columns across to offset? Or should it actu...

7 years ago
Forum
Page 53 / 56