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
Amardeep100115
Post Prodigy
Post Prodigy

How we can have days in qtr in power query ( M-Code)?

How we can have days in qtr in power query ( M-Code)?

AB
3 REPLIES 3
v-luwang-msft
Community Support
Community Support

Hi @Amardeep100115 ,

Pls refer the below sample:(the first rows is year start_date and end_date)

vluwangmsft_0-1669343831511.png

 

Then create 2 parameters as Start and End:

vluwangmsft_1-1669343831389.png

 

Add new blank query with below M code to count the days in each quarter :

Days Qtr 1:
let
    Source = List.Dates( Start, Number.From( End - Start) +1, #duration(1,0,0,0)),
    Custom1 = List.Select(Source, each Date.QuarterOfYear(_)=1),
    #"Calculated Count" = List.NonNullCount(Custom1)
in
#"Calculated Count"


Days Qtr 2:
let
    Source = List.Dates( Start, Number.From( End - Start) +1, #duration(1,0,0,0)),
    Custom1 = List.Select(Source, each Date.QuarterOfYear(_)=2),
    #"Calculated Count" = List.NonNullCount(Custom1)
in
#"Calculated Count"


Days Qtr 3:
let
    Source = List.Dates( Start, Number.From( End - Start) +1, #duration(1,0,0,0)),
    Custom1 = List.Select(Source, each Date.QuarterOfYear(_)=3),
    #"Calculated Count" = List.NonNullCount(Custom1)
in
#"Calculated Count"


Days Qtr 4:
let
    Source = List.Dates( Start, Number.From( End - Start) +1, #duration(1,0,0,0)),
    Custom1 = List.Select(Source, each Date.QuarterOfYear(_)=4),
    #"Calculated Count" = List.NonNullCount(Custom1)
in
#"Calculated Count"

Right click each query to create the function:

vluwangmsft_2-1669343831701.png

 

vluwangmsft_3-1669343831690.png

 

Finally , invoke custome function in fact table:

vluwangmsft_4-1669343832043.png

 

vluwangmsft_5-1669343831546.png

 

The results shown as below:

vluwangmsft_8-1669344028640.png

 

 

Best regards,

Lucien

@v-luwang-msft  & @amitchandak 

Please find the below calendar m-code that i am working on, Please help me with adding a column for days in Qtr and number. i mean  when qtr get start then days rows should have 1-90/91 days valuesand whenever new qtr get start again values will start from 1-90/91.  also if you could able to add week num (1- 13/14) in qtr please 

Calendar m-code

 

Thanks 

 

AB
amitchandak
Super User
Super User

@Amardeep100115 ,

If you have the start and end date of qtr, you can have

 

example for today's date

 

Duration.Days(Date.EndOfQuarter(DateTime.LocalNow())  - Date.StartOfQuarter(DateTime.LocalNow()) )

 

add +1 if needed

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.