Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Can someone please help me create a measure to get a specific value based on multiple measures?
In the table below based on my Index, I need to get the equivalent Rolling30D with SI value sitting at the 75th percentile.
For the sample data below, 75% of 41 would be 31 so I need to be able to retrieve the value 124.
I tried creating a measure myself which I've called Trigger Line however it gives me multiple rows, I just need a single number.
In the table above, the trigger line should only show the value of 124 for all the rows. How can I achieve this?
Index is also a measure
HI @CEvange,
You cna try to use the following measure formula if it suitable for your requirement:
formula =
VAR summary =
SUMMARIZE (
ALLSELECTED ( 'Date' ),
'Date'[Date],
"Rolling30D", [* Rolling30D with SI],
"Index", [*Index],
"TL", [*Trigger Line]
)
VAR percent = 0.75
VAR target =
ROUNDUP ( percent * COUNTROWS ( summary ), 0 )
RETURN
MAXX ( FILTER ( summary, [Index] = target ), [TL] )
Regards,
Xiaoxin Sheng
Hi @Anonymous ,
I tried the measure you provided unfortunately it just came up as blank.
User | Count |
---|---|
14 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |