Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Berl21
Helper III
Helper III

Adapt a measure to show only the last value despite context

Hi,

I have written this measure to get only the last date and its revenue in a table:

Total Revenue by Max Date =

IF(
    ISINSCOPE('Ohne Vouchers+ Nur Vouchers'[Last_Modified]),
    VAR __MAXDATE = CALCULATE( MAX('Ohne Vouchers+ Nur Vouchers'[Last_Modified]) , ALLSELECTED('Ohne Vouchers+ Nur Vouchers'[Last_Modified]))
    RETURN
    IF(  MAX('Ohne Vouchers+ Nur Vouchers'[Last_Modified])  = __MAXDATE , [Total Turnover] ),
    [Total Turnover]
)

It works well as a stand alone, but now I need to show only the last date per stage.

For example:
-- here the table shows the correct result:
Berl21_1-1678877359535.png

 

-- here the table shows the correct grand total, but should show 0 or a blank for all 3 first columns:

Berl21_0-1678877343901.png

 

In other words what I need is to rewrite the formula above with something else than ALLSELECTED, and then add a blank statement. I have tried but it shows zero values afterwards 😕 

What is the correct function to use here instead of ALLSELECTED?

Thanks!
1 REPLY 1
lbendlin
Super User
Super User

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.

https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors