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

"Current data and filters produce no result for this value" with text measure in textbox

Hello,

I encountered the following problem: in textbox the values of measure that return text return message: "Current data and filters produce no result for this value" in Power BI Desktop if I create calculated group item "YOY":

 

 

 

VAR ValueCurrentPeriod =
    SELECTEDMEASURE ()
VAR ValuePreviousPeriod =
    CALCULATE ( SELECTEDMEASURE (), 'Time Intelligence'[Time Intelligence] = "PY" )
VAR Result =
    IF (
        ISBLANK ( ValueCurrentPeriod ) && ISBLANK ( ValuePreviousPeriod ),
        ValueCurrentPeriod - ValuePreviousPeriod
    )
RETURN
    Result

 

 

 

If I delete this item or change to return varriable "ValueCurrentPeriod" text measure in textbox returt correct value.

 

Does any solutiuon?

 

Sample file

1 REPLY 1
DataInsights
Super User
Super User

@Denis_Zinukov,

 

I think you want the opposite logic. If both variables are not blank, return the value.

 

VAR ValueCurrentPeriod =
    SELECTEDMEASURE ()
VAR ValuePreviousPeriod =
    CALCULATE ( SELECTEDMEASURE (), 'Time Intelligence'[Time Intelligence] = "PY" )
VAR Result =
    IF (
        ValueCurrentPeriod <> BLANK() && ValuePreviousPeriod <> BLANK(),
        ValueCurrentPeriod - ValuePreviousPeriod
    )
RETURN
    Result




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

Proud to be a Super User!




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.