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
Yrstruly2021
Helper V
Helper V

All DAX calculations gives an error

Please assist. I tried to do calculations and it gives an error for all of them.

Yrstruly2021_0-1662207073528.png

I chnages the following DAX code to what i have in my tables:

Margins LQ = CALCULATE( [Profit Margins], DATEADD( Dates[Date], -1, QUARTER ) )
QoQ Sales Change = [Total Sales] - [Sales LQ]
Sales 1M MA =
AVERAGEX(
    DATESINPERIOD( Dates[Date], LASTDATE( Dates[Date] ), -1, MONTH ),
        [Total Sales] ) and
 
Cummulative Sales =
CALCULATE( [Total Sales],
    FILTER( ALLSELECTED( Dates ),
        Dates[Date] <= MAX( Dates[Date] )))
 
4 REPLIES 4
Yrstruly2021
Helper V
Helper V

I did that.

Yrstruly2021
Helper V
Helper V

I have hanged my data types, i believe it is correct now. Still i dont get data back, example: "

Sales LY = CALCULATE([Total Sales], DATEADD('Calendar table'[Date], -48,MONTH))"
 

Hi @Yrstruly2021 

https://we.tl/t-wvUyhckJ9W
The orders Created_DateTime column contains time in addition to date. Therefore, it matches zero dates in the calendar table. I have created a Created_Date column and linked it with Calendar[Date] and now your measure works. However, I noticed that the year slicer still have blanks, so I adjusted the start date of the calendar table to MIN ( Orders[Create_Date] ) but still have blanks. I believe your data model and requires an overall check to clean up everything.

1.png

tamerj1
Super User
Super User

Hi @Yrstruly2021 
You need to set the correct data type (Decimal) in power query 

1.png

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