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.
Hello,
I am new to Power BI and I have been trying to find a formula to enter in a measure to display a specific value.
I have a table that goes like this :
Year | Product A | Product B |
2020 | 1 | 10 |
2021 | 3 | 7 |
2022 | 5 | 11 |
And I would like a measure that would only display the Value for the Product A in 2020 so that I can use this value for a KPI (target goal).
Thank you for your help 🙂
Solved! Go to Solution.
You can create a measure like
Prod A 2020 = LOOKUPVALUE( 'Table'[Product A], 'Table'[Year], 2020)
You can create a measure like
Prod A 2020 = LOOKUPVALUE( 'Table'[Product A], 'Table'[Year], 2020)
User | Count |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
30 | |
13 | |
11 | |
9 | |
6 |