Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
Hi Power BI Community!
I have this very simple column =
Solved! Go to Solution.
@Anonymous , Not very clear
If timediff is column
Then you can have columns
New column =
var _diff = datediff([PO date (start delivery)] , [deliverend on date] Day)
return
Switch ( True() ,
_diff <= 5, " 0-5 Days" ,
_diff <= 15, "5-15 Days" ,
_diff <= 30, "15-30 Days" ,
"more than 30 day"
)
And use that as a filter.
If that is measure then you need dynamic Segmentation: https://www.youtube.com/watch?v=CuczXPj0N-k
@Anonymous , Not very clear
If timediff is column
Then you can have columns
New column =
var _diff = datediff([PO date (start delivery)] , [deliverend on date] Day)
return
Switch ( True() ,
_diff <= 5, " 0-5 Days" ,
_diff <= 15, "5-15 Days" ,
_diff <= 30, "15-30 Days" ,
"more than 30 day"
)
And use that as a filter.
If that is measure then you need dynamic Segmentation: https://www.youtube.com/watch?v=CuczXPj0N-k
User | Count |
---|---|
88 | |
68 | |
67 | |
58 | |
53 |
User | Count |
---|---|
40 | |
38 | |
34 | |
32 | |
28 |