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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Is it possible to transform such Oracle SQL function into DAX

hello,

 

I am trying to transform the following Oracle SQL function into DAX but without any success. Could you please help me how to solve it? The functionality of this field should be like that you input account value into ${account} and then it shows you relevant result.

 

SELECT

sum(CASE
WHEN "accountMD" = ${account} THEN -1*"amount"
ELSE "amount"
END
) OVER (PARTITION BY "businessPartnerNumber") AS SUM

FROM Table

 

Thank you,

Martin

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Anonymous ,

I created some data:

Table:

vyangliumsft_0-1656037069405.png

Table2:

vyangliumsft_1-1656037069405.png

Here are the steps you can follow:

1. Use [account] of Table2 as a slicer.

vyangliumsft_2-1656037069408.png

2. Create measure.

if_Measure =
var _select=SELECTEDVALUE('Table 2'[account])
return
IF(
    MAX('Table'[accountMD])=_select,-1*MAX('Table'[amount]),MAX('Table'[amount]))
SUM =
SUMX(FILTER(ALL('Table'),'Table'[businessPartnerNumber]=MAX('Table'[businessPartnerNumber])),[if_Measure])

3. Result:

vyangliumsft_3-1656037069410.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi  @Anonymous ,

I created some data:

Table:

vyangliumsft_0-1656037069405.png

Table2:

vyangliumsft_1-1656037069405.png

Here are the steps you can follow:

1. Use [account] of Table2 as a slicer.

vyangliumsft_2-1656037069408.png

2. Create measure.

if_Measure =
var _select=SELECTEDVALUE('Table 2'[account])
return
IF(
    MAX('Table'[accountMD])=_select,-1*MAX('Table'[amount]),MAX('Table'[amount]))
SUM =
SUMX(FILTER(ALL('Table'),'Table'[businessPartnerNumber]=MAX('Table'[businessPartnerNumber])),[if_Measure])

3. Result:

vyangliumsft_3-1656037069410.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.