The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have a fixed daily target for different products, I have a column with the actual values for each day.
Is there a way to have that daily target multiplied by the selected date range (date range is altered with a Filter Slicer)
EX.: If the target is "100" daily, if the filter is selected for 3 days, then the Target be updated to "300".
Solved! Go to Solution.
You could try a measure like this if you have a date table (one row per day). If three days are selected in a filter/slicer, the COUNTROWS expression would return three.
Target Measure = 100 * COUNTROWS ( 'Date' )
Proud to be a Super User!
You could try a measure like this if you have a date table (one row per day). If three days are selected in a filter/slicer, the COUNTROWS expression would return three.
Target Measure = 100 * COUNTROWS ( 'Date' )
Proud to be a Super User!
User | Count |
---|---|
12 | |
9 | |
6 | |
6 | |
5 |
User | Count |
---|---|
24 | |
14 | |
14 | |
9 | |
7 |