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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
sqldev2017
Microsoft Employee
Microsoft Employee

Help with Simple DAX formula

 

I am doing something like this - 

 

PreviousMonth = FORMAT(CALCULATE(MIN(DimDate[Month]), FILTER(DimDate, DimDate[Month_Year] = [SelectedMonthYear]) ), "String")
 
-  Min(DimDate[Month])  returns a string ... I can see it returns the right string.
 
But when i now use this calculated "Measure"  (PreviousMonth) - in another formula , the result of that formula returns BLANK ....  When I replace this measure (in that other formula), with a hard coded string , that formula returns the right result ! 
 
What am i doing wrong ?   
 
I have tried every kind of thing, it doesn't work ! 
1 ACCEPTED SOLUTION

@sqldev2017

 

Try storing the MEASURE value in a variable first

 

Revenue =
VAR myMEASURE = [MonthYear]
RETURN
    CALCULATE (
        SUM ( fact[Revenue] ),
        FILTER ( fact, fact[fiscalMonth] = myMEASURE )
    )

View solution in original post

7 REPLIES 7
MFelix
Super User
Super User

Hi @sqldev2017,

 

What do you want to use this measure for? what is the context and calculation you arre making on the other measure where this one is used?

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





 

I simply want to return one string value from a table, based on a filter....  That filter will always return one string value (for that table).

 

I understand CALCULATE is only for numeric measures... 

 

But in this instance CALCULATE also seems to return a string ! 

Hi @sqldev2017,

Calculate is not only for numeric it can be used in very different ways and the result will be variable text, numbers, etc.


You say in your post that you want to use the measure you calculated in another measure what is exactly your needs? Can you share sample data, setup expected result.

Regards

Mfelix

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





I am doing something pretty straightforward. 

 

My first "calculated measure"  "MonthYear" returns a value say =  "December 2018"

 

 

I use this calculated measure "MonthYear" in a different calculated measure as a Filter parameter - 

 

"Revenue" = CALCULATE(SUM(Revenue), FILTER("fact", fact.fiscalMonth = MonthYear)) 

 

I can verify that MonthYear measure actually returns "December 2018"

 

But Revenue measure returns a blank value.

 

When I replace the MonthYear parameter , with a hard coded value 

 

"Revenue" = CALCULATE(SUM(Revenue), FILTER("fact", fact.fiscalMonth = "December 2018" )) - Now this returns proper revenue value.

 

I do not understand why this is happening !  This is just so Bizzare.

 

 

@sqldev2017

 

Try storing the MEASURE value in a variable first

 

Revenue =
VAR myMEASURE = [MonthYear]
RETURN
    CALCULATE (
        SUM ( fact[Revenue] ),
        FILTER ( fact, fact[fiscalMonth] = myMEASURE )
    )

That worked like a Charm. 

 

Thank You.

 

Honestly,  I was trying to do this FORMAT(Measure, "String")  , that was not working.

 

This worked.

@sqldev2017

 

Glad it worked.

 

When you use a MEASURE inside a FILTER function, it is evaluated for each row of the Table inside FILTER function (in your case it is FACT table)

That's why we have to store its value first in a variable

 

 FILTER ( fact, fact[fiscalMonth] = [Measure] )
    )

 

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Users online (4,834)