Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 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.
I have a simple inquiry, want to add new column or measure index based on the column "Days in Query".
If DaysinQuery is >5 then index = 3, 6-10 then index = 2 and >10 then index =1. Thank you all.
Example:
Acct | DaysinQuery |
1 | >5 |
2 | 6-10 |
3 | >10 |
4 | >10 |
5 | 6-10 |
6 | 6-10 |
7 | >5 |
8 | 6-10 |
9 | >5 |
10 | >10 |
Desire result:
Acct | DaysinQuery | OrderingIndex |
1 | >5 | 3 |
2 | 6-10 | 2 |
3 | >10 | 1 |
4 | >10 | 1 |
5 | 6-10 | 2 |
6 | 6-10 | 2 |
7 | >5 | 3 |
8 | 6-10 | 2 |
9 | >5 | 3 |
10 | >10 | 1 |
Solved! Go to Solution.
First of all i think you want days =<5 but if thats the text then it is so. Just doesnt make sense,
Create a new column:
OrderingIndex = IF('TableName'[DaysInQuery] = ">5",3,
IF('TableName'[DaysInQuery] = ">10",1,2))
First of all i think you want days =<5 but if thats the text then it is so. Just doesnt make sense,
Create a new column:
OrderingIndex = IF('TableName'[DaysInQuery] = ">5",3,
IF('TableName'[DaysInQuery] = ">10",1,2))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
81 | |
53 | |
37 | |
37 |