Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
@rbriga Thank you for your quick response!
I have tried above solution but it's not working in my case.
Still getting circular dependency error in my Ranking formula.
Kindly help me to create calculated column for MAX of Netoverdue (Note that Netoverdue is the calculated column I have created)
Netoverdue = measure1+measure2+measure3
It Happens since it's not a column. If you're looking for the MAX Overdue among the rows in table 1, try:
VAR MAXOVERDUE =
MAXX(
Table1,
[Overdue]
)
If you're looking for the max overdue among customers, try
VAR MAXOVERDUE =
MAXX(
VALUES(Table1[Customer ID]),
[Overdue]
)
User | Count |
---|---|
10 | |
9 | |
7 | |
4 | |
4 |