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.
Hi all,
This is my table.
I would like to fill the EDU column based on the New Daily usage type.
For eg: If 'New Daily usage type' = ADU then 'EDU' = 16.25
If 'New Daily usage type' = FDU the 'EDU' = 39
and so on...
How can I achieve that in DAX?
Any help is appreciated!
Thank you!
Megha
Solved! Go to Solution.
Hi @Anonymous ,
In case this is, what you are looking for...
... you can try this DAX:
EDU = IF ( 'Table'[New Daily Usage Type] = "FDU", 'Table'[FDU], IF ( 'Table'[New Daily Usage Type] = "Blend", 'Table'[Blend], IF ( 'Table'[New Daily Usage Type] = "ADU", 'Table'[ADU], BLANK() ) ) )
Hope this helps!
/Tom
https://www.instagram.com/tackytechtom
Did I answer your question❓➡️ Please, mark my post as a solution ✔️ |
Also happily accepting Kudos 🙂 |
Feel free to connect with me on LinkedIn! | |
#proudtobeasuperuser | |
Hi @Anonymous ,
In case this is, what you are looking for...
... you can try this DAX:
EDU = IF ( 'Table'[New Daily Usage Type] = "FDU", 'Table'[FDU], IF ( 'Table'[New Daily Usage Type] = "Blend", 'Table'[Blend], IF ( 'Table'[New Daily Usage Type] = "ADU", 'Table'[ADU], BLANK() ) ) )
Hope this helps!
/Tom
https://www.instagram.com/tackytechtom
Did I answer your question❓➡️ Please, mark my post as a solution ✔️ |
Also happily accepting Kudos 🙂 |
Feel free to connect with me on LinkedIn! | |
#proudtobeasuperuser | |
you can use nested if to fill that coloumn
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
11 | |
10 | |
10 | |
9 |