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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
atjt217
Helper III
Helper III

Sum based of current date

Hello PBI Wizards im hoping to ask your help to solve this: sample.PNG

What im trying to do is to figure out a measure formula to get the sum of revenue based of current date. For example: today 4/6 should be a total of $87,705.00. Then it needs to be able to adjust depending on current date. So once tomorrow comes its going to be $108,270.00.

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, @atjt217 

Please try to write something like below.

 

 

newmeasure =
VAR currentmonth =
MONTH ( TODAY () )
RETURN
CALCULATE (
[Revenue],
FILTER (
ALL ( yourdatetable ),
datecolumn <= TODAY ()
&& monthnumbercolumn = currentmonth
)
)

 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi, @atjt217 

Please try to write something like below.

 

 

newmeasure =
VAR currentmonth =
MONTH ( TODAY () )
RETURN
CALCULATE (
[Revenue],
FILTER (
ALL ( yourdatetable ),
datecolumn <= TODAY ()
&& monthnumbercolumn = currentmonth
)
)

 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


It works! Thank you Jihwam Kim!

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.