March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I have below report, I want to show the first date where the % is less than 90% per State per RC.
Can anyone help?
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
First date less than 90% =
VAR newtable =
ADDCOLUMNS (
SUMMARIZE ( Data, Data[State], Data[RC], Data[Date] ),
"@ratio", CALCULATE ( DIVIDE ( SUM ( Data[Count] ), SUM ( Data[Slots] ) ) )
)
VAR filtertable =
FILTER ( newtable, [@ratio] < 0.9 )
RETURN
IF ( HASONEVALUE ( Data[State] ), MINX ( filtertable, Data[Date] ) )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
This is my DAX:
First date less than 90% =
VAR newtable =
ADDCOLUMNS (
SUMMARIZE ( Count, Location[State], Location[RC], Data[Date] ),
"@ratio", CALCULATE ( DIVIDE ( SUM ( Count[Count] ), SUM ( Slots[Slots] ) ) )
)
VAR filtertable =
FILTER ( newtable, [@ratio] < 0.9 )
RETURN
IF ( HASONEVALUE ( Location[State] ), MINX ( filtertable, Data[Date] ) )
and I get below, it correctly filter <90, but not the min date per RC:
Hi,
Please check the below picture and the attached pbix file.
First date less than 90% =
VAR newtable =
ADDCOLUMNS (
SUMMARIZE ( Data, Data[State], Data[RC], Data[Date] ),
"@ratio", CALCULATE ( DIVIDE ( SUM ( Data[Count] ), SUM ( Data[Slots] ) ) )
)
VAR filtertable =
FILTER ( newtable, [@ratio] < 0.9 )
RETURN
IF ( HASONEVALUE ( Data[State] ), MINX ( filtertable, Data[Date] ) )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi @Jihwan_Kim ,
Just on last thing, Can you please help with how to get the Count and slots figure for the first date, at the moment I get the sum.
Thanks.
Hi,
Please check the attached file.
Thank you.
Count on First date less than 90% =
VAR newtable =
ADDCOLUMNS (
SUMMARIZE ( Data, Data[State], Data[RC], Data[Date], Data[Slots], Data[Count] ),
"@ratio", CALCULATE ( DIVIDE ( SUM ( Data[Count] ), SUM ( Data[Slots] ) ) )
)
VAR filtertable =
FILTER ( newtable, [@ratio] < 0.9 )
VAR mindate =
MINX ( filtertable, Data[Date] )
VAR countfigure =
SUMX ( FILTER ( newtable, Data[Date] = mindate ), Data[Count] )
RETURN
IF ( HASONEVALUE ( Data[State] ), countfigure )
Slots on First date less than 90% =
VAR newtable =
ADDCOLUMNS (
SUMMARIZE ( Data, Data[State], Data[RC], Data[Date], Data[Slots], Data[Count] ),
"@ratio", CALCULATE ( DIVIDE ( SUM ( Data[Count] ), SUM ( Data[Slots] ) ) )
)
VAR filtertable =
FILTER ( newtable, [@ratio] < 0.9 )
VAR mindate =
MINX ( filtertable, Data[Date] )
VAR slotsfigure =
SUMX ( FILTER ( newtable, Data[Date] = mindate ), Data[Slots] )
RETURN
IF ( HASONEVALUE ( Data[State] ), slotsfigure )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi @Jihwan_Kim ,
Thanks for your quick response.
I get error because the date is in Date table, State is in the Location table, they are not in the same table.
Also the Count and Slots are in another different tables.
HI,
Thank you for your feedback.
Sorry that I cannot imagine how your data model looks like.
I think, sharing your sample pbix file will help.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
I can't share the pbix because I have tabular model.
Attached is a simple draw of the model.
This is my DAX:
First date less than 90% =
VAR newtable =
ADDCOLUMNS (
SUMMARIZE ( Count, Location[State], Location[RC], Data[Date] ),
"@ratio", CALCULATE ( DIVIDE ( SUM ( Count[Count] ), SUM ( Slots[Slots] ) ) )
)
VAR filtertable =
FILTER ( newtable, [@ratio] < 0.9 )
RETURN
IF ( HASONEVALUE ( Location[State] ), MINX ( filtertable, Data[Date] ) )
and I get below, it correctly filter <90, but not the min date per RC:
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
157 | |
97 | |
79 | |
69 |