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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

Units Previous Month - Two Date Tables

I am trying to calculate the units fulfilled in a previous month. My table has two date tables. I need the data from the "Fulfillment" date table.

This is the DAX formula I wrote. I received this error.

 

Units Previous Month = calculate(
sum('Orders Table'[net_quantity]),
filter(all('Date'),
'Date'[Month]= SELECTEDVALUE('Date'[Month])-1), 'Date'[Year]=SELECTEDVALUE('Date'[Year]))
 
ERROR: "
MdxScript(Model) (32, 52) Calculation error in measure 'Key Measures'[Units Previous M]: Cannot convert value 'January' of type Text to type Number." 
 
My table looks like this, and the data time is marked as "Date/time". I am able to mark the "Date Hierarchy" as the date table, but the formula still doesn't work, and then the month name doesn't work in the other date table. 
sampledata2.PNGsampledata.PNG
 
Is there a different formula I can use?? I tried using a DATEADD formula, but it didn't return the correct values. 
unitspevm.PNG
1 ACCEPTED SOLUTION
Anonymous
Not applicable

I ended up solving it. I had to use the fulfillment date table and use [Date] from there. Thanks!

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

I ended up solving it. I had to use the fulfillment date table and use [Date] from there. Thanks!

danextian
Super User
Super User

Hi @Anonymous ,

 

It is odd that it doesnt work.  You can see in my screenshot below that it does.

danextian_0-1655247949221.png

Alternatively, try this

Previous Month2 = 
VAR __end =
    MIN ( Dates[Date] ) - 1
VAR __start =
    EOMONTH ( MIN ( Dates[Date] ), -2 ) + 1
RETURN
    CALCULATE ( [Sum of Values], DATESBETWEEN ( Dates[Date], __start, __end ) )




Dane Belarmino | Microsoft MVP | Proud to be a Super User!

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


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 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.