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
rmsaunders
Frequent Visitor

Variable usage in CALCULATE statement

Hello. I'm new to Power BI and DAX, and I'm trying to get the following code more compact:
 
This works:
 
calc_TY_Sales_YTD =
VAR var_Metric = SELECTEDVALUE(table_Sales_Metrics[Metric])
VAR var_TY_sales_YTD =
SWITCH(TRUE(),
var_Metric = "Units", CALCULATE(SUM(SALES_TABLE[qty_sold]), DATESBETWEEN(DATE_TABLE[date], [calc_Report_Start_Date], [calc_Report_End_Date])),
var_Metric = "Cost $", CALCULATE(SUM(SALES_TABLE[dollar_sold]), DATESBETWEEN(DATE_TABLE[date], [calc_Report_Start_Date], [calc_Report_End_Date])),
var_Metric = "Retail $", CALCULATE(SUM(SALES_TABLE[retail_sold]), DATESBETWEEN(DATE_TABLE[date], [calc_Report_Start_Date], [calc_Report_End_Date])))
 
I'd rather do this...
 
calc_TY_Sales_YTD =
VAR var_Metric = SELECTEDVALUE(table_Sales_Metrics[Metric])
VAR var_Sales_measure =
SWITCH(TRUE(),
var_Metric = "Units", SUM(SALES_TABLE[qty_sold]),
var_Metric = "Cost $", SUM(SALES_TABLE[dollar_sold]),
var_Metric = "Retail $", SUM(SALES_TABLE[retail_sold]))
VAR var_TY_sales_YTD =
CALCULATE(var_Metric, DATESBETWEEN(DATE_TABLE[date], [calc_Report_Start_Date], [calc_Report_End_Date]))

...or this...
 
calc_TY_Sales_YTD =
VAR var_Metric = SELECTEDVALUE(table_Sales_Metrics[Metric])
VAR var_Sales_measure =
SWITCH(TRUE(),
var_Metric = "Units", SALES_TABLE[qty_sold],
var_Metric = "Cost $", SALES_TABLE[dollar_sold],
var_Metric = "Retail $", SALES_TABLE[retail_sold])
VAR var_TY_sales_YTD =
CALCULATE(SUM(var_Metric), DATESBETWEEN(DATE_TABLE[date], [calc_Report_Start_Date], [calc_Report_End_Date]))
 
...but neither of thise seem to work.
 
Am I stuck with the first method, or am I missing something?
 
Thanks.
1 ACCEPTED SOLUTION
v-jiascu-msft
Employee
Employee

Hi @rmsaunders,

 

Do you have any performance issue? Or just want to compact the formula? If so, please try out this one. 

 

calc_TY_Sales_YTD =
VAR var_Metric =
    SELECTEDVALUE ( table_Sales_Metrics[Metric] )
VAR var_TY_sales_YTD =
    CALCULATE (
        SWITCH (
            var_Metric,
            "Units", SUM ( SALES_TABLE[qty_sold] ),
            "Cost $", SUM ( SALES_TABLE[dollar_sold] ),
            "Retail $", SUM ( SALES_TABLE[retail_sold] )
        ),
        DATESBETWEEN (
            DATE_TABLE[date],
            [calc_Report_Start_Date],
            [calc_Report_End_Date]
        )
    )
RETURN
    var_TY_sales_YTD

If it doesn't help, please provide a sample that we can download or copy with. Please mask the sensitive parts first.

 

 

 

Best Regards,

Community Support Team _ Dale
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

3 REPLIES 3
v-jiascu-msft
Employee
Employee

Hi @rmsaunders,

 

Do you have any performance issue? Or just want to compact the formula? If so, please try out this one. 

 

calc_TY_Sales_YTD =
VAR var_Metric =
    SELECTEDVALUE ( table_Sales_Metrics[Metric] )
VAR var_TY_sales_YTD =
    CALCULATE (
        SWITCH (
            var_Metric,
            "Units", SUM ( SALES_TABLE[qty_sold] ),
            "Cost $", SUM ( SALES_TABLE[dollar_sold] ),
            "Retail $", SUM ( SALES_TABLE[retail_sold] )
        ),
        DATESBETWEEN (
            DATE_TABLE[date],
            [calc_Report_Start_Date],
            [calc_Report_End_Date]
        )
    )
RETURN
    var_TY_sales_YTD

If it doesn't help, please provide a sample that we can download or copy with. Please mask the sensitive parts first.

 

 

 

Best Regards,

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

Greg_Deckler
Super User
Super User

Hmm, probably a better way, can you share sample data that can be copied and pasted so that I can try a few things? Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490.

 

Also, there are some techniques here that might help.

https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...

 

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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