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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
shanipowerbi
Helper III
Helper III

Need help to get 1st day value in each row

Hi Expert

 

I need month 1st date value each day, for good understanding please see the example below:

 

Date                Amount      1st Date Amount (required this)

01 Jan 2020    80,225           80,225

02 Jan 2020    80,400           80,225

03 Jan 2020    80,500           80,225

04 Jan 2020    80,800           80,225

04 Jan 2020    80,900           80,225

 

I got this resolution which worked well when I use a simple date format like above but it's not working when I turn the date into Hierarchy. The resolution I got is below

 

1 Day Value =

VAR currentyear =
YEAR ( MAX ( Billing[Date2]) )
VAR currentmonth =
MONTH ( MAX ( Billing[Date2]) )
VAR currentmonthfirstday =
DATE ( currentyear, currentmonth, 1 )
RETURN
CALCULATE ( Billing[Billing], Billing[Date2] = currentmonthfirstday )

1 ACCEPTED SOLUTION

Hi Kim

 

Thanks for your help your solution of replacing All with Allslected worked thanks

View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi, @shanipowerbi 

If you convert the context to the date-hierarchy, I think you need to add one more condition into the measure, because the context is changed.

Please try the below.

 

1 Day Value =

VAR currentyear =
YEAR ( MAX ( Billing[Date2]) )
VAR currentmonth =
MONTH ( MAX ( Billing[Date2]) )
VAR currentmonthfirstday =
DATE ( currentyear, currentmonth, 1 )
RETURN
CALCULATE ( Billing[Billing], Filter(ALL(Billing), Billing[Date2] = currentmonthfirstday ))

 

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.

Linkedin: https://www.linkedin.com/in/jihwankim1975/

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


Hi Kim

 

Thanks for your help your solution of replacing All with Allslected worked thanks

Ashish_Mathur
Super User
Super User

Hi,

What do you mean by "when I turn the date into Hierarchy"?  Show the result you are expecting.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.