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
scabral
Helper IV
Helper IV

smart narrative producing no results, but same measure works in table or card

I have the following measure that will return either Low, Medium or High from a column in a table:

 

VAR CountRange =
SWITCH(
    TRUE(),
    [Account Selection Count] >= 3 && [Account Selection Count] <= 8, "3-8",
    [Account Selection Count] >= 9 && [Account Selection Count] <= 12, "9-12",
    [Account Selection Count] >= 13, "13+",
    BLANK()
)
VAR AcctConfidenceRating =
CALCULATE(
        MIN('Confidence Rating'[Confidence Rating]),
        TREATAS({(CountRange, [Renewal Interval Match])}, 'Confidence Rating'[Count Range], 'Confidence Rating'[Renewal Interval Match])
)
Return
AcctConfidenceRating
 
If I use this measure in a card or table it works fine, but when i add it to a text box as a smart narrative it is blank and gives me the following message:
 
current data and filters produce no result for this value.
 
Thanks
scott
1 REPLY 1
v-jialluo-msft
Community Support
Community Support

Hi @scabral ,

 

This issue may be due to triggering some limitations of smart narrative, so check out the limitations:

vjialluomsft_0-1668063962628.png

 


Smart narratives tutorial - Power BI | Microsoft Learn

 

If not for this reason, please provide specific example files to further troubleshoot the cause of the question

 

Best Regards,

Gallen Luo

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

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