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
r1cokoro
Regular Visitor

SQL Statement to Dax

Hi All,

I need help converting a SQL query to DAX cause at this point my DAX code looks weird and it doesn't work,

 

There are data in USD and DOP currencys, so I would like to have a result like this

Capture.PNG

 

 

 

 

 

 

 

there is a parameter in the pbix VAR CURRENCY = SELECTEDVALUE(DIM_CURRENCY[key]) which will replace the variable in the next SQL Server code

 

 

/*
DECLARE @CURRENCY INT;

SET @CURRENCY = 1

SELECT
	A.REASON,
	--calculation for dop currency
	CASE @CURRENCY
		WHEN 1 THEN
			CASE A.CURRENCY
				WHEN 1 THEN SUM(ADJUDICADO) + SUM(MONTO_COTIZADO)
				WHEN 2 THEN (SUM(ADJUDICADO) + SUM(MONTO_COTIZADO)) / 57
				ELSE 0
			END
		WHEN 2 THEN
			CASE A.CURRENCY
				WHEN 1 THEN (SUM(ADJUDICADO) + SUM(MONTO_COTIZADO)) * 57
				WHEN 2 THEN SUM(ADJUDICADO) + SUM(MONTO_COTIZADO)
				ELSE 0
			END
		ELSE 0
	END AS DOP,
	--calculation for usd currency
	CASE @CURRENCY
		WHEN 1 THEN
			CASE A.CURRENCY
				WHEN 1 THEN SUM(ADJUDICADO) + SUM(MONTO_COTIZADO)
				WHEN 2 THEN (SUM(ADJUDICADO) + SUM(MONTO_COTIZADO)) / 57
				ELSE 0
			END
		WHEN 2 THEN
			CASE A.CURRENCY
				WHEN 1 THEN (SUM(ADJUDICADO) + SUM(MONTO_COTIZADO)) * 57
				WHEN 2 THEN SUM(ADJUDICADO) + SUM(MONTO_COTIZADO)
				ELSE 0
			END
		ELSE 0
	END AS USD
FROM ( --TMP TABLE
	SELECT
		'Not Enough Founds' AS REASON,
		23423423423.321 AS ADJUDICADO,
		-34234234234.55 AS MONTO_COTIZADO,
		1 AS CURRENCY
	UNION
	SELECT
		'Fees' AS REASON,
		23423423.2 AS ADJUDICADO,
		-423423.09 AS MONTO_COTIZADO,
		2 AS CURRENCY
	UNION
	SELECT
		'Others' AS REASON,
		123123321.21 AS ADJUDICADO,
		-1231231.53 AS MONTO_COTIZADO,
		1 AS CURRENCY
	) A
GROUP BY
	A.REASON,
	A.CURRENCY
*/

 

 

Basically the parameter 1 will convert the currency from USD to DOP and vice versa if we select 2, for the data in USD and DOP respectively.

 

At the end I don't know If it's possible to have a calculation table with those case and grouping calculations,

 

Hope this makes sense!

 

Thanks for your help!

1 ACCEPTED SOLUTION
r1cokoro
Regular Visitor

Well doing some research on Microsoft DOCS, I found the way I can translate the query,

Monto = 
VAR CURRENCY = SELECTEDVALUE(DIM_MONEDA[key])
RETURN (
    SWITCH(
        TRUE(),
        CURRENCY = 1, SUMX(FILTER(FACT_DEALS, FACT_DEALS[MONEDA]="DOP"), FACT_DEALS[MONTO_COTIZADO])
            + (SUMX(FILTER(FACT_DEALS, FACT_DEALS[MONEDA]="USD"), FACT_DEALS[MONTO_COTIZADO]) * 57),
        CURRENCY = 2, SUMX(FILTER(FACT_DEALS, FACT_DEALS[MONEDA]="USD"), FACT_DEALS[MONTO_COTIZADO])
            + (SUMX(FILTER(FACT_DEALS, FACT_DEALS[MONEDA]="DOP"), FACT_DEALS[MONTO_COTIZADO]) / 57),
        CURRENCY = 3, SUM(FACT_DEALS[MONTO_COTIZADO]) + SUM(FACT_DEALS[ADJUDICADO])
    )
)

Basically with SWITCH and SUMX I found the way to calculate the amount...

View solution in original post

1 REPLY 1
r1cokoro
Regular Visitor

Well doing some research on Microsoft DOCS, I found the way I can translate the query,

Monto = 
VAR CURRENCY = SELECTEDVALUE(DIM_MONEDA[key])
RETURN (
    SWITCH(
        TRUE(),
        CURRENCY = 1, SUMX(FILTER(FACT_DEALS, FACT_DEALS[MONEDA]="DOP"), FACT_DEALS[MONTO_COTIZADO])
            + (SUMX(FILTER(FACT_DEALS, FACT_DEALS[MONEDA]="USD"), FACT_DEALS[MONTO_COTIZADO]) * 57),
        CURRENCY = 2, SUMX(FILTER(FACT_DEALS, FACT_DEALS[MONEDA]="USD"), FACT_DEALS[MONTO_COTIZADO])
            + (SUMX(FILTER(FACT_DEALS, FACT_DEALS[MONEDA]="DOP"), FACT_DEALS[MONTO_COTIZADO]) / 57),
        CURRENCY = 3, SUM(FACT_DEALS[MONTO_COTIZADO]) + SUM(FACT_DEALS[ADJUDICADO])
    )
)

Basically with SWITCH and SUMX I found the way to calculate the amount...

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.