Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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 |
---|---|
141 | |
70 | |
70 | |
53 | |
53 |
User | Count |
---|---|
208 | |
95 | |
64 | |
61 | |
57 |