The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi all,
I am facing issue while doing the divide: -
Find the sample data blow :-
Date | Device | Duration | Legend |
29/05/2022 | A | 112 | Sessions |
29/05/2022 | B | 113 | Gap |
29/05/2022 | C | 114 | Standalone |
30/05/2022 | A | 111 | Sessions |
30/05/2022 | B | 110 | Gap |
30/05/2022 | C | 112 | Standalone |
31/05/2022 | A | 111 | Sessions |
31/05/2022 | B | 113 | Gap |
31/05/2022 | C | 111 | Standalone |
Requirement is :- Session = Count of record where legend is session
Gap = count of gap where legend is gap
Standalone = To sum up the duration where legend is session divide by number of record where legend is standalone.
Session and gap I could find but the problem is with standalone series.
I wrote a measure to get the output but it showing me a blank in table.
My measure :-
Measure = var _0 = CALCULATE(
SUM(Table[Duration])/60,FILTER(
all(table[Legends]),Table[Legends] = "Session"))
var _1 = calculate(COUNT(table[Legends]),
FILTER(table,Table[Legends] = "standalone"))
Return
if(selectedvalue(Table[Legends]) = "Standalone",DIVIDE(_0,_1))
With this formula i get a result in KPI card:-
But on the table i didn't get the value with their legend standalone
Solved! Go to Solution.
HI @Yagevendra ,
Change measure to the below:
Measure = var _0 = CALCULATE(
SUM('Table'[Duration])/60,FILTER(
all('Table'),'Table'[Legends] = "Sessions"))
var _1 = calculate(COUNT('Table'[Legends]),
FILTER('Table','Table'[Legends] = "Standalone"))
Return
if(selectedvalue('Table'[Legends]) = "Standalone",DIVIDE(_0,_1))
Output result:(223/60 /3=1.23)
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
HI @Yagevendra ,
Change measure to the below:
Measure = var _0 = CALCULATE(
SUM('Table'[Duration])/60,FILTER(
all('Table'),'Table'[Legends] = "Sessions"))
var _1 = calculate(COUNT('Table'[Legends]),
FILTER('Table','Table'[Legends] = "Standalone"))
Return
if(selectedvalue('Table'[Legends]) = "Standalone",DIVIDE(_0,_1))
Output result:(223/60 /3=1.23)
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
113 | |
83 | |
73 | |
51 | |
42 |
User | Count |
---|---|
140 | |
112 | |
72 | |
64 | |
63 |