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.
Solved! Go to 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)
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)
somethink with additional (hidden) parameter or subquery, where you select top 12 date from datetable where date <= @date order by date desc
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
4 | |
2 | |
2 | |
2 | |
2 |
User | Count |
---|---|
35 | |
10 | |
6 | |
5 | |
4 |