March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |