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.
@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 |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |