Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Good afternoon, everyone,
In the following table, Column BI Limit is a calcuated column.
In this calculated column, I need to fill in the Coverage BI Limit information within the same policy number.
Appreciate your help.
Dennis
| Policy | Coverage | Limit | BI Limit |
| 456 | BI | 50 | 50 |
| 456 | PD | 60 | 50 |
| 456 | PIP | 70 | 50 |
| 321 | BI | 40 | 40 |
| 321 | PIP | 30 | 40 |
Solved! Go to Solution.
Thank you so much, it works perfectly. A good day. Dennis
Column = VAR _policy = 'Table'[Policy]
RETURN
CALCULATE(MAX('Table'[Limit]),
FILTER('Table',
'Table'[Policy] = _policy &&
'Table'[Coverage] = "BI"))
Thank you so much, it works perfectly. A good day. Dennis
| User | Count |
|---|---|
| 57 | |
| 43 | |
| 32 | |
| 16 | |
| 13 |
| User | Count |
|---|---|
| 84 | |
| 70 | |
| 37 | |
| 27 | |
| 24 |