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

MTD without using a date table

When creating smaller reports; I add year and month columns to the existing dataset according to whatever the "DATE" field is. 

 

Ex:

DATE            YEAR      MONTH

1/2/2017      2017          1

1/3/2017      2017          1

3/5/2016      2016          3

6/8/2016      2016          6

7/28/2016    2016          7

7/25/2016    2016          7

7/25/2017    2016          7

 

I am creating visualizations, and I want them to only show MTD. ( So the 7/28/2016 data will not be on the visual )

How do I do this?

 

1 ACCEPTED SOLUTION
fhill
Resident Rockstar
Resident Rockstar

If you can work with Current Week or Prevoius Weeks, this might work... 

 

I've added 2 calculated columns and 1 measure to your data to accomplish (by week) your desired filtering.  WeekNum will return a number 1-52 of the week from your date.  Using it again with TODAY() returns today's weekNum.  The Calculated Column is then used in a filter to only show values with WEEKNUM less than or equal to TODAY()'s weekNum.

 

 

Measure:

TodaysWeek = WEEKNUM(TODAY())

 

Cal. Colmuns:

Week = WEEKNUM(Table1[DATE        ])

Display = IF(Table1[Week] <= [TodaysWeek],1,0)

*** If you don't want current week, only previous weeks, change <= to < ***

 

 

Capture.PNG




Did I answer your question, or help you along the way?
Please give Kudos or Mark as a Solution!


https://www.linkedin.com/in/forrest-hill-04480730/

Proud to give back to the community!
Thank You!




View solution in original post

2 REPLIES 2
fhill
Resident Rockstar
Resident Rockstar

If you can work with Current Week or Prevoius Weeks, this might work... 

 

I've added 2 calculated columns and 1 measure to your data to accomplish (by week) your desired filtering.  WeekNum will return a number 1-52 of the week from your date.  Using it again with TODAY() returns today's weekNum.  The Calculated Column is then used in a filter to only show values with WEEKNUM less than or equal to TODAY()'s weekNum.

 

 

Measure:

TodaysWeek = WEEKNUM(TODAY())

 

Cal. Colmuns:

Week = WEEKNUM(Table1[DATE        ])

Display = IF(Table1[Week] <= [TodaysWeek],1,0)

*** If you don't want current week, only previous weeks, change <= to < ***

 

 

Capture.PNG




Did I answer your question, or help you along the way?
Please give Kudos or Mark as a Solution!


https://www.linkedin.com/in/forrest-hill-04480730/

Proud to give back to the community!
Thank You!




Anonymous
Not applicable

Add a measure:

 

MTD = NOW()

 

Then use this measure to your visuzlization as a filter where date column < MTD.

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.