Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
can somebody explain why we see here '+ 1 day'? the value is cleary above 10080, so I expect to see '+1 week'
@hanswittoeck Hey,
I will below to use below measure.
Groups = SWITCH ( TRUE(),
SUM('Operations F_PM_Notification_Details'[Duration in Minutes]) >= 10080, "+1 Week",
SUM('Operations F_PM_Notification_Details'[Duration in Minutes]) >= 1440, "+1 Day",
SUM('Operations F_PM_Notification_Details'[Duration in Minutes]) > 60, "Max 1h",
SUM('Operations F_PM_Notification_Details'[Duration in Minutes]) <= 60, "Less than 1h",
SUM('Operations F_PM_Notification_Details'[Duration in Minutes]) <= 15, "Max 15m",
"Regular")
Thanks
Harish KM
If above step's solved your problem. Kudos will be highly apprieciated. Accept this as solution as well
Do you want to categorize individual transactions, or the aggregates? For aggregates you need to materialize the result first before comparing it.
Hi @hanswittoeck ,
Is this a metric or a calculated column? Taking into account the code you show I assume this is a calculated column so the values are calculated for each row of the table, I assume that each notification nº can have more than one line in your table, with small values.
Create new measure and use the same syntax but instead of:
'Operations F_PM_Notification_Details'[Duration in Minutes]
use
SUM('Operations F_PM_Notification_Details'[Duration in Minutes])
So your syntax will be:
Groups =
SWITCH (
TRUE(),
SUM('Operations F_PM_Notification_Details'[Duration in Minutes]) >= 10080, "+1 Week",
SUM('Operations F_PM_Notification_Details'[Duration in Minutes]) >= 1440, "+1 day",
SUM('Operations F_PM_Notification_Details'[Duration in Minutes]) <= 15, "Max 15m",
SUM('Operations F_PM_Notification_Details'[Duration in Minutes]) <= 60, "Max 1h"
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsUser | Count |
---|---|
73 | |
70 | |
38 | |
24 | |
23 |
User | Count |
---|---|
96 | |
94 | |
50 | |
42 | |
40 |