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
suman-petlu
Frequent Visitor

How to create measure columns using case statement based on condition in power bi

Hi all,

I am new to power bi,please let me know how to execute below case statement

CASE
WHEN t3189.w_xact_type_code = 'Standard Invoice' THEN
t4720.loc_exchange_rate * t4720.net_amt
WHEN t3189.w_xact_type_code = 'Invoice Cancellation' THEN
t4720.net_amt * - 1 * t4720.loc_exchange_rate
END

Thanks in advance
Suman
1 ACCEPTED SOLUTION

Hi,

 

Please try IF dax function:

Column = IF(RELATED('Table 2'[Date].[Year])=2000,'Table'[Amount]*'Table'[Quantity])

And it shows:

41.PNG

Hope this helps.

 

Best Regards,

Giotto Zhi

View solution in original post

5 REPLIES 5
az38
Community Champion
Community Champion

Hi @suman-petlu 

try

Column = SWITCH([t3189.w_xact_type_code],
"Standard Invoice", [t4720.loc_exchange_rate] * [t4720.net_amt],
"Invoice Cancellation" ,- 1 *[t4720.net_amt] *  [t4720.loc_exchange_rate],
0
)

do not hesitate to give a kudo to useful posts and mark solutions as solution


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

Hi @az38 ,

 I tried using Switch function but i didn't get desried results.Please help

 

Capture.JPG

But tried to multiply with Constant value ,its working as expected

 

Capture1.JPG

Regards,

Suman

Hi,

 

Please try IF dax function:

Column = IF(RELATED('Table 2'[Date].[Year])=2000,'Table'[Amount]*'Table'[Quantity])

And it shows:

41.PNG

Hope this helps.

 

Best Regards,

Giotto Zhi

Try using this inside switch sumx(sales[Amount_sold]*sales[Quantity_sold])

 

Switch(times[calenderyear]="2000",sumx(sales[Amount_sold]*sales[Quantity_sold]))

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.