The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Kindly help how to convert the below excel formula to Power BI Power Query
IF((AND(B2>=0,B2<2)),"0-2 Weeks",IF((AND(B2>=2,BS<4)),"2-4 Weeks",IF((AND(B2>=4,B2<6)),"4-6 Weeks",IF((AND(B2>=6,B2<20)),"Others"))))
Note: B2 is the cell reference.
Thank you in advance!
Solved! Go to Solution.
@Kurdapyo_pogi , Create a new column like
Switch( True(),
[B] < 2 ,"0-2 Weeks",
[B] < 4 ,"2-4 Weeks",
[B] < 6 ,"4-6 Weeks",
"Others")
@Kurdapyo_pogi , Create a new column like
Switch( True(),
[B] < 2 ,"0-2 Weeks",
[B] < 4 ,"2-4 Weeks",
[B] < 6 ,"4-6 Weeks",
"Others")
User | Count |
---|---|
65 | |
62 | |
60 | |
53 | |
28 |
User | Count |
---|---|
181 | |
82 | |
67 | |
47 | |
44 |