Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I have a table which looks something like this
| Renewal_ID | Offer_id | General_excess |
| 12677 | 1 | 30000 |
| 12677 | 2 | 10000 |
| 12677 | 0 | 20000 |
| 12712 | 7 | 30000 |
| 12712 | 8 | 10000 |
| 12712 | 0 | 20000 |
This is just a snapshot and there are multiple renewal_id's and offer_id's. I am trying to add a new column which captures the general_excess for offer_id = 0 for each renewal_id column. it should look something like this:
| Renewal_ID | Offer_id | General_excess | General_excess_o |
| 12677 | 1 | 30000 | 20000 |
| 12677 | 2 | 10000 | 20000 |
| 12677 | 0 | 20000 | 20000 |
| 12712 | 7 | 30000 | 20000 |
| 12712 | 8 | 10000 | 20000 |
| 12712 | 0 | 20000 | 20000 |
I tried using lookupvalue but that results in multiple values being returned. Sorry if this question seems very trivial but I am just learning powerbi. Any help will be appreciated!
Thanks
Solved! Go to Solution.
Hey, yes this seems to work. Thank you!!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 22 | |
| 12 | |
| 10 | |
| 10 | |
| 9 |