Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

DAX

Hi all,

 

This is my table.

Megha3012_0-1643900687233.png

 

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

 

 

1 ACCEPTED SOLUTION
tackytechtom
Super User
Super User

Hi @Anonymous ,

In case this is, what you are looking for...

tomfox_0-1643906198916.png

 

... 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.tackytech.blog

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! linkedIn

#proudtobeasuperuser 

View solution in original post

2 REPLIES 2
tackytechtom
Super User
Super User

Hi @Anonymous ,

In case this is, what you are looking for...

tomfox_0-1643906198916.png

 

... 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.tackytech.blog

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! linkedIn

#proudtobeasuperuser 

Anonymous
Not applicable

you can use nested if to fill that coloumn

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors