cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
aiyosap
Helper II
Helper II

Card result can't display value (Current YTD vs Previous YTD)

Hi gentlemen,

I am struggling to try to resolve this problem in my PowerBI dashboard. Hope you can help.

I have a card visual which will show the percentage result of the comparison between current YTD against previous YTD. 

However, the error message appeared when I slice and filter with other dropdown selection.

 

Error Message.JPG

Let me show you..

----------------------------------------------------------------------------------------------------

Under normal circumstance, when user did not select and filter any selection criteria in dropdown selection filter, all the following visual appear and calculation is accurate. (refer to first column scenario)

 

However, when I select and filter other object in the selection dropdown, the error display in the CARD and Table (refer to the second column scenario).

Normal Circumstance (correct outcome) - all objects are selected in selection dropdown Abnormal Circumstance (error outcome) - when certain objects are selected in selection dropdown
Card 1-correct.JPGCard 2-wrong.JPG
Graph1-Correct.JPGGraph2-Wrong.JPG
Table1-Correct.JPGTable2-Wong.JPG

 

The following is the DAX used in the computation.

 

(Current YTD - Previous YTD) DIVIDED BY (Previous YTD)

IME_YTD-IME_PreYTD_% = DIVIDE(

                        ([IME_charges_YTD1]-[IME_charges_PreYTD1]),

                        [IME_charges_PreYTD1]

                        )

 

Current YTD calculation

IME_charges_YTD1 = TOTALYTD(

                        'IME'[Tot_IME-amt_incl_tax],

                        IME[File Date]

                    )

Previous YTD calculation

IME_charges_PreYTD1 =

        Calculate(IME[IME_charges_YTD1],

        SAMEPERIODLASTYEAR(IME[File Date])

        )

 

Thank You.

Aiyo

2 REPLIES 2
littlemojopuppy
Community Champion
Community Champion

Question: do you have a date table and is it marked appropriately in your data model?  SAMEPERIODLASTYEAR() is a time intelligence function that requires a properly indicated date table.

 

 

Also the error message seems fairly clear that it requires a list of dates without gaps.  This would be accomplished with a properly created date table.

 

Make the date table.  Create relationships between that table and the relevant tables.  You should be good then.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors