Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
User | Count |
---|---|
20 | |
6 | |
4 | |
3 | |
2 |