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
AshutoshSahoo_1
Frequent Visitor

How to Get the Last 12 Dates fields in Power BI report Builder

Hi Experts,

                 I m having  a date field  in my data in my parameter if I m selecting a date I want to show the last 12 dates  from the data

Ex: 1/1/22

5/1/22

7/1/22

12/2/22

17/2/22

31/3/22

1/5/22

8/7/22

5/9/22

. so on

 

if i m selecting 8/7/22 i want previous 12 dates from the date field.

Please help me to get the solution.

@dax 

1 ACCEPTED SOLUTION

e.g. if you have table DATA with collumn DATE 

1) create parameter @date 

 

2) add where condition to your sql dataset like:

select ... from DATA

where DATE in (select distinct top 12 DATE from DATA where DATE <= @date order by DATE desc)

View solution in original post

5 REPLIES 5
AshutoshSahoo_1
Frequent Visitor

Hi Thanks for the response @josef78  but I m getting the proper output can you please explain more? by giving some examples.

well, but only for confirm, are you talking about report builder (paginated report)? And, is connected to SQL data source or SSAS cube?

Yes Report builder and i m connecting through Dsn from SQL database.

e.g. if you have table DATA with collumn DATE 

1) create parameter @date 

 

2) add where condition to your sql dataset like:

select ... from DATA

where DATE in (select distinct top 12 DATE from DATA where DATE <= @date order by DATE desc)

josef78
Solution Sage
Solution Sage

somethink with additional (hidden) parameter or subquery, where you select top 12 date from datetable where date <= @date order by date desc

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.

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.