Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I need to replicate COL B in PowerBI, it should dynamically change the value based on date selection.
For example: if I select date 02/01/2021, it should change to that date and make default value of 100 against that date.
I have tried using MIN, max date and If condition but it's not working.
Solved! Go to Solution.
Hi, @mohanpal
You can try the following methods.
Measure:
COL B =
IFERROR (
100 * SELECTEDVALUE ( 'Table'[Date] )
/ CALCULATE ( MIN ( 'Table'[Date] ), ALL ( 'Table' ) ),
BLANK ()
)
You can select output values by date. Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @mohanpal
You can try the following methods.
Measure:
COL B =
IFERROR (
100 * SELECTEDVALUE ( 'Table'[Date] )
/ CALCULATE ( MIN ( 'Table'[Date] ), ALL ( 'Table' ) ),
BLANK ()
)
You can select output values by date. Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@mohanpal Try using a measure, the calculated column will run once when you open the report.
If you need help in writing the measure just reply.
Use the selectedvalue function in measure to achieve the same.
If this post helps, then please consider accepting it as the solution to help the other members find it more quickly.
Thanks and Regards,
Atma.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |