Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi all, I am trying to add a DAX column to find out the MAX value among few columns, meanwhile, less then the baseline value.
| Baseline | A | B | C | MAX_R | |
| 10 | 7 | 9 | 12 | 9 | |
| 13 | 10 | 12 | 11 | 12 | |
| 15 | 14 | 18 | 20 | 14 | |
| 19 | 17 | 13 | 25 | 17 |
Line 1 in the MAX column, "9" is the largest value among A, B ,C and <10
I am trying this formula but not success. May I have some advice?
MAX_R =
VAR _list = {
('table'[A]),
('table'[B]),
('table'[C])}
return
MAXX(FILTER(_list.[value]<'table'[Baseline]))
Solved! Go to Solution.
@ngct1112 , Test as
Column MAX_R =
maxx(Filter(Union(Row("A",'Table'[A]),Row("A",'Table'[B]),Row("A",'Table'[C])),[A] <=[Baseline]),[A])
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 55 | |
| 48 | |
| 38 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 85 | |
| 70 | |
| 38 | |
| 28 | |
| 25 |