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
Anonymous
Not applicable

PY sales on mtd basis

Hi Guys,

 

I'm using this code to get sales of mar 2021 on mtd basis, but it is not showing values for 1st date I tried this code with every month but the error is same it is not showing values for 1st of every month can anyone help

 

PY MAR 21 = CALCULATE(SUM(table[sales]), 'Date'[Month Number] = 03 && 'Date'[Year] = 2021 && (DAY('Date'[Day])<DAY(TODAY()-1)))
1 ACCEPTED SOLUTION
v-chenwuz-msft
Community Support
Community Support

Hi @Anonymous ,

 

Is that 1st of each month have no values? There some mistakes in your code. 

 

PY MAR 21 = CALCULATE(SUM(table[sales]), 'Date'[Month Number] = 03 && 'Date'[Year] = 2021 && (DAY('Date'[Day])<DAY(TODAY()-1)))

 

1 DAY(<date>).

This function's parameter need a date, but 'Date'[Day] is a number. You should use 'Date'[Day] directly without DAY(). For example, 'Date'[Day] is 1,then DAY(1) result is 31, 31 is impossible less then DAY(TODAY()-1) even if today is 31so the sale on 1st day has been removed form the calculate table.

 

2 Try change "<" to "<=" in the last filter of this CALCULATE function.

Beause if Today() is 2, result for DAY(TODAY()-1) is 1, so 'Date'[Day] should less then 1, so range of the result is (-∞,0]. 

code should like the following:

PY MAR 21 =
CALCULATE(
    SUM( table[sales] ),
    'Date'[Month Number] = 03
        && 'Date'[Year] = 2021
        && 'Date'[Day] <= DAY( TODAY() - 1 )
)

 

I do not sure it is right dut to i have no idea for your Date[Day] type and where this code used, measure or column?

 

Or you can share some example data if you need more help.

 

Best Regards

Community Support Team _ chenwu zhu

 

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

View solution in original post

1 REPLY 1
v-chenwuz-msft
Community Support
Community Support

Hi @Anonymous ,

 

Is that 1st of each month have no values? There some mistakes in your code. 

 

PY MAR 21 = CALCULATE(SUM(table[sales]), 'Date'[Month Number] = 03 && 'Date'[Year] = 2021 && (DAY('Date'[Day])<DAY(TODAY()-1)))

 

1 DAY(<date>).

This function's parameter need a date, but 'Date'[Day] is a number. You should use 'Date'[Day] directly without DAY(). For example, 'Date'[Day] is 1,then DAY(1) result is 31, 31 is impossible less then DAY(TODAY()-1) even if today is 31so the sale on 1st day has been removed form the calculate table.

 

2 Try change "<" to "<=" in the last filter of this CALCULATE function.

Beause if Today() is 2, result for DAY(TODAY()-1) is 1, so 'Date'[Day] should less then 1, so range of the result is (-∞,0]. 

code should like the following:

PY MAR 21 =
CALCULATE(
    SUM( table[sales] ),
    'Date'[Month Number] = 03
        && 'Date'[Year] = 2021
        && 'Date'[Day] <= DAY( TODAY() - 1 )
)

 

I do not sure it is right dut to i have no idea for your Date[Day] type and where this code used, measure or column?

 

Or you can share some example data if you need more help.

 

Best Regards

Community Support Team _ chenwu zhu

 

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

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.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

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