cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
PowerBIlearner
Frequent Visitor

DAX first day of current month

I want to do Month to date and year to date calculation without using MTD and YTD functions. I know Today() stands for Today's date. In the same lines can someone please tell me how do I get the first day of current month (example 1/1/2017 currently) and first day of current year? TIA.

 

@Baskar @Seth_C_Bauer @ankitpatira @BhaveshPatel @ImkeF @KHorseman @Greg_Deckler.

 

 

1 ACCEPTED SOLUTION
Vvelarde
Community Champion
Community Champion

@PowerBIlearner

 

FirstDayofCurrentYear = DATE(YEAR(TODAY()),1,1)




Lima - Peru

View solution in original post

9 REPLIES 9
jgubler
Advocate III
Advocate III

first day of current month = DATE(YEAR(today()), month(today()), 1)

This did it for me.
Baskar
Resident Rockstar
Resident Rockstar

Cool my dear friend ,

 

try this one.

 

FIRSTDATE(Dates)

 

It will give u the first date from the date.

 

If u choose month it will give u the start of month, if u select year it will give start of year.

 

let me know if any help.

This is a way to easily calculate MTD and YTD without the need to calculate the first days first:

[SalesYTD] := 
CALCULATE (
    [Sales], 
    FILTER (
        ALL ( 'Date' ), 
        'Date'[Year] = MAX ( 'Date'[Year] )
            && 'Date'[Date] <= MAX ( 'Date'[Date] )
    )
)

Taken from DAXPatterns here: http://www.daxpatterns.com/time-patterns/

 

Imke Feldmann (The BIccountant)

If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!

How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries

Vvelarde
Community Champion
Community Champion

@PowerBIlearner

 

FirstDayofCurrentYear = DATE(YEAR(TODAY()),1,1)




Lima - Peru

It Works, Thank you very much ! 🙂

How can I get the first day of month If I have "Year" as a parameter?

If year 2018 - I need May 1,2018

if Year 2017 - I need May 1, 2017 etc

KHorseman
Community Champion
Community Champion

First Day of This Month = DATE(YEAR(TODAY()), MONTH(TODAY()), 1)





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thanks, this has given me help on another problem I was having.

I did it but It doesn't work

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

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

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors