DAX Measure used in Formula produces blank but not when variable

dicken

Active Member
Joined
Feb 12, 2022
Messages
277
Office Version
  1. 365
Platform
  1. Windows
This is cross posted with Excel Forum; DAX Using a Measure in formula produces a blank and can't see why

My question relates to the following formula to get the previous value from non consec dates; first I have a filtered down table.
Excel Formula:
Filtered Dates :=
MAXX (
    FILTER (
        ALL ( Table1[Date] ),
        Table1[Date] < IF ( HASONEVALUE ( Table1[Date] ), VALUES ( Table1[Date] ) )
    ),
    Table1[Date]
)


and then ;

Excel Formula:
M as VAR Previous Unit :=
VAR FDs = [Filtered Dates]
VAR PrevU =
    CALCULATE ( [Tsales], FILTER ( ALL ( Table1[Date] ), Table1[Date] = FDs ) )
RETURN
    PrevU

Can someone explain why I have to declare the Filtered dates measure as a variable, if I use it directly, I get a blank, I've tried using studio to get an idea
of what's happening but without much success.

Richard.
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
You first formula is very inefficient

try this

Filtered Dates :=
MAXX (
ALL ( Table1[Date] ),
Table1[Date]
)
in your second formula, I *** you are saying that the alternative is to replace FDs with the measure. If you do that, you are generating a row context inside FILTER. FILTER steps through every date, one at a time. The measure triggers context transition (which does not happen when you declare the variable first. I’m not really sure what happens next because as the first formula is pretty weird to me.
 
Upvote 0
the purpose is to return the previous row value, based on date, nonconsecutive, so the table is fired down to the maximum date value that is below the current date value and then use calculate to return the 'unit' and that row.


1666702113518.png

I did find that this work ;
Excel Formula:
Copy of FilteredTable2 :=
VAR FDs =
    VAR mdate =
        MAX ( Table1[Date] )
    RETURN
        MAXX ( FILTER ( ALL ( Table1[Date] ), Table1[Date] < mdate ), Table1[Date] )
VAR anser =
    CALCULATE ( [Tunits], FILTER ( ALL ( Table1[Date] ), Table1[Date] = FDs ) )
RETURN
    anser

The original use of "if hasovne value" , was because that gives the current row date in the pivot, you can then count the number of dates below the current row date and from there take the the maximum of that, Anyway I sort of get what you're saying about declaring the variable as a measure, as much as I ever will.
just to add one slight disadvantage of not using if hasonvvalue is that you end up with a value in total, and still have to use isfiltered or something to get rid of it.

Richard.
 
Last edited:
Upvote 0
VBA Code:
Copy of FilteredTable2 :=
VAR FDs =
    VAR mdate =
        MAX ( Table1[Date] )
    RETURN
        MAXX ( FILTER ( ALL ( Table1[Date] ), Table1[Date] < mdate ), Table1[Date] )
VAR anser =
    CALCULATE ( [Tunits], FILTER ( ALL ( Table1[Date] ), Table1[Date] = FDs ) )
RETURN
    if(hasonevalue(Table1[Date]),anser)

OK, but HASONEVALUE is better placed outside of the MAXX
 
Upvote 0
VBA Code:
Copy of FilteredTable2 :=
VAR FDs =
    VAR mdate =
        MAX ( Table1[Date] )
    RETURN
        MAXX ( FILTER ( ALL ( Table1[Date] ), Table1[Date] < mdate ), Table1[Date] )
VAR anser =
    CALCULATE ( [Tunits], FILTER ( ALL ( Table1[Date] ), Table1[Date] = FDs ) )
RETURN
    if(hasonevalue(Table1[Date]),anser)

OK, but HASONEVALUE is better placed outside of the MAXX
Thank you, sorry for slow response, not been too well last few days, still aren't for that matter.

Richard
 
Upvote 0

Forum statistics

Threads
1,214,520
Messages
6,120,011
Members
448,935
Latest member
ijat

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top