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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Generating Dates

Hi All,

 

I have a Date field in my table.

I have to create a new column based on date field.

 

Logic: If date=today's date then it have to populate dates starting from April till today's date.

 

Ex: Toda's Date=19/05/2021 then it have to populate dates starting from 01/04/2021 till 19/05/2021.

 

Thanks in advance.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

What's the expected result, Something like below?

Column = IF('Table'[date]>TODAY()||'Table'[date]<DATE(2021,4,1),BLANK(),'Table'[date])

6.PNG

 

Best Regards,

Jay

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @Anonymous ,

 

What's the expected result, Something like below?

Column = IF('Table'[date]>TODAY()||'Table'[date]<DATE(2021,4,1),BLANK(),'Table'[date])

6.PNG

 

Best Regards,

Jay

amitchandak
Super User
Super User

@Anonymous , you can not do it in column you can create table of dates

 

New Table =
var _month = month(Today())
var _year = if(_month <4, year(Today())-1, year(Today()))
var _st = date(_year,4,1)
return
calendar(_st, today())

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hi Amit,

Thanks for your response.

 

From my end a small correction in logic:

If today's Date=19/05/2021

then it have to populate dates starting from 01/04/2020 till 19/05/2020.

 

Do we have any alternative approach to arrive it as column instead of table.

 

 

 

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors