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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Show data until today in dashboard

Hello everyone, I need help with this problem, I have to show in a dashboard the months so far including ALL september

Snahass_0-1663068105083.png

For example, for this case, I have all these CAPAS (record type), and i need to show 
Capa:
capa 010
capa 064
capa 067

due date:

30/4/2022
31/8/2022

30/9/2022

not including 31/10/2022 (capa 0695)

 

Thanks everyone

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

Please try below steps:

1. below is my test table

Table:

vbinbinyumsft_0-1663145624205.png

2. create a measure with below dax formula

Measure =
VAR cur_due_date =
    SELECTEDVALUE ( 'Table'[Due Date] )
VAR cur_date =
    TODAY ()
RETURN
    IF ( MONTH ( cur_due_date ) <= MONTH ( cur_date ), 1, 0 )

3. add a table visual with "Table" column, and add this measure to table visual filter pane

vbinbinyumsft_1-1663145769802.png

Please refer the .pbix file.

 

Best regards,
Community Support Team_ Binbin Yu
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

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

Please try below steps:

1. below is my test table

Table:

vbinbinyumsft_0-1663145624205.png

2. create a measure with below dax formula

Measure =
VAR cur_due_date =
    SELECTEDVALUE ( 'Table'[Due Date] )
VAR cur_date =
    TODAY ()
RETURN
    IF ( MONTH ( cur_due_date ) <= MONTH ( cur_date ), 1, 0 )

3. add a table visual with "Table" column, and add this measure to table visual filter pane

vbinbinyumsft_1-1663145769802.png

Please refer the .pbix file.

 

Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Anonymous ,

 

Use this measure in visual or as a visual level filter

 

countrows(filter(Table, Table[Due date] < eomonth(Today(),0) ))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors