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
hieudm6
Frequent Visitor

Showing End of Month value ignoring date slicer

Hi, I am having 02 datasets sharing the same date table.

(1). Daily total sales YTD which includes total sales from beginning till end of year.

(2). Planned total sales which show total monthly sales only on the last day of every month.

 

The problem is I need to calculate the percentage of total sales at a given day compared to total planned monthly sales of that month using 1 slicer which is the date table (showing all date from beginning till end of year). 

 

Please have a look at the example:

 

Date            | Daily Sales | Monthly Plan (What I wanted)

11/01/2022 | 500            | 10.000
11/02/2022 | 459            | 10.000
11/03/2022 | 400            | 10.000
...                 |    ...             |    ...
12/01/2022 | 600            | 12.000
12/02/2022 | 550            | 12.000
...                 |   ...              |    ...

 

What I wanted to show is when I choose a random date from the date slicer, It would show the % of total sale from beginning of the month upto that date versus that month's sales plan.

Appreciate your help alot! Thanks!

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@hieudm6 , You can show complete month data like

 

This Month =
var _max = eomonth(if(isfiltered('Date'),MAX( 'Date'[Date]) , today()),0)
var _min = eomonth(_max,-1)+1 ,
return
CALCULATE([net] ,DATESBETWEEN('Date'[Date],_min,_max))

 

or

Power BI Distributing/Allocating the Monthly Target(Convert to Daily Target): Measure ( Daily/MTD): https://community.powerbi.com/t5/Community-Blog/Power-BI-Distributing-Allocating-the-Monthly-Target-...

 

PowerBI Distributing/Allocating the Yearly Target(Convert to Daily Target): Measure ( Daily/YTD): Magic of CLOSINGBALANCEYEAR With TOTALYTD/DATESYTD: https://community.powerbi.com/t5/Community-Blog/Power-BI-Distributing-Allocating-the-Yearly-Target-C...

View solution in original post

Hi @hieudm6 

 

Not sure if I understand it correctly, you can download my sample file attached at bottom to see details. 

vjingzhang_0-1670315899191.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

View solution in original post

5 REPLIES 5
hieudm6
Frequent Visitor

Hi @amitchandak,

Thank you for your help, I tried the function but it seemed to aggregate total plan amount of 12 months and display regardless of which month it was.

Date            | Daily Sales | Monthly Plan (What I wanted)  | Monthly Plan (What I tried) --> Annual total planned
11/01/2022 | 500            | 10.000                                       | 150.000 
11/02/2022 | 459            | 10.000                                       | 150.000
11/03/2022 | 400            | 10.000                                       | 150.000
...                 |    ...             |    ...                                            | ...
12/01/2022 | 600            | 12.000                                       | 150.000
12/02/2022 | 550            | 12.000                                       | 150.000
...                 |   ...              |    ...                                            | ...

Hi @hieudm6 

 

Not sure if I understand it correctly, you can download my sample file attached at bottom to see details. 

vjingzhang_0-1670315899191.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

Thank you very much! It helps a lot.

amitchandak
Super User
Super User

@hieudm6 , You can show complete month data like

 

This Month =
var _max = eomonth(if(isfiltered('Date'),MAX( 'Date'[Date]) , today()),0)
var _min = eomonth(_max,-1)+1 ,
return
CALCULATE([net] ,DATESBETWEEN('Date'[Date],_min,_max))

 

or

Power BI Distributing/Allocating the Monthly Target(Convert to Daily Target): Measure ( Daily/MTD): https://community.powerbi.com/t5/Community-Blog/Power-BI-Distributing-Allocating-the-Monthly-Target-...

 

PowerBI Distributing/Allocating the Yearly Target(Convert to Daily Target): Measure ( Daily/YTD): Magic of CLOSINGBALANCEYEAR With TOTALYTD/DATESYTD: https://community.powerbi.com/t5/Community-Blog/Power-BI-Distributing-Allocating-the-Yearly-Target-C...

Thank you very much, I accidentally deleted the relationship between the date table and 1 off my dataset which caused the above problem. Your functions worked perfectly as well!

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.