The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hey everyone i want to make a bucket for entries
testing = if('data'[hours] = blank() && 'data'[hour] = 7.25 ,"partially",
if('data'[hours] >=7.25 "over booked","fully booked")))
Solved! Go to Solution.
Use this
= SWITCH(TRUE(),'data'[hours]<7.25,"Partially",'data'[hours]>7.25,"Overbooked","Fully booked")
Use this
= SWITCH(TRUE(),'data'[hours]<7.25,"Partially",'data'[hours]>7.25,"Overbooked","Fully booked")