cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Raul_Cristobal
New Member

Count values ​​before and after today's date in month

Hello, I want to count the values ​​that exist before and after today's date during the month.

For example, in the table there are 84 values ​​in the month of December. Today is 5/12/2022 (today()) therefore 2 measurements should be returned.
- There are 6 values ​​(rows) before 12/5/2022 (today())
- There are 77 values ​​(rows) after 12/5/2022 (today()) not including the same day.

And so on for the months in the filter.

1.png

1 ACCEPTED SOLUTION

@Raul_Cristobal - Try this solution and let me know if this meets your requirement. Many Thanks

Manoj_Nair_0-1670266020180.png

After Today = COUNTX(FILTER(Maintenance,Maintenance[DIA] > DAY(TODAY())), Maintenance[MES])
Before Today = COUNTX(FILTER(Maintenance,Maintenance[DIA] < DAY(TODAY())), Maintenance[MES])

 

View solution in original post

5 REPLIES 5
Raul_Cristobal
New Member

Hello, I want to count the values ​​that exist before and after today's date during the month.

For example, in the table there are 84 values ​​in the month of December. Today is 5/12/2022 (today()) therefore 2 measurements should be returned.
- There are 6 values ​​(rows) before 12/5/2022 (today())
- There are 77 values ​​(rows) after 12/5/2022 (today()) not including the same day.

And so on for the months in the filter.

1.png

@Raul_Cristobal - Try this solution and let me know if this meets your requirement. Many Thanks

Manoj_Nair_0-1670266020180.png

After Today = COUNTX(FILTER(Maintenance,Maintenance[DIA] > DAY(TODAY())), Maintenance[MES])
Before Today = COUNTX(FILTER(Maintenance,Maintenance[DIA] < DAY(TODAY())), Maintenance[MES])

 

Thanks!!!!

Manoj_Nair
Resolver IV
Resolver IV

@Raul_Cristobal, saw a similar post from you yesterday, was that similar or different. Post link https://community.powerbi.com/t5/Power-Query/Count-values-before-and-after-today-s-date-in-month/m-p.... Pls confirm. Thanks

v-yinliw-msft
Community Support
Community Support

Hi @Raul_Cristobal ,

 

You can try this method:

Sample data:

vyinliwmsft_0-1670309962443.png

New two measures:

BeforeToday = CALCULATE(COUNTROWS('Table'),FILTER('Table', 'Table'[Date] < TODAY())) 
AfterToday = CALCULATE(COUNTROWS('Table'),FILTER('Table', 'Table'[Date] > TODAY()))

The result is:

vyinliwmsft_1-1670309985165.png

Hope this helps you.

Here is my PBIX file.

 

Best Regards,

Community Support Team _Yinliw

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

 

Helpful resources

Announcements
Vote for T-Shirt Design

Power BI T-Shirt Design Challenge 2023

Vote for your favorite t-shirt design now through March 28.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.

March Events 2023A

March 2023 Events

Find out more about the online and in person events happening in March!

Top Solution Authors