Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hi can anyone correct my calculated column, coz still show value suposedly not. What i required is only with the word OVERDUE
OverdueSummary =
VAR IsStatusOverdue = CONTAINSSTRING('Combined'[Status], "OVERDUE")
VAR IsLoadoutOverdue = CONTAINSSTRING('Combined'[Loadout], "OVERDUE")
RETURN
IF(
IsStatusOverdue || IsLoadoutOverdue,
"OVERDUE",
BLANK()
)
Thank you
Solved! Go to Solution.
Hi,
You can use:
OverdueSummary =
VAR StatusValue = TRIM(UPPER('Combined'[Status]))
VAR LoadoutValue = TRIM(UPPER('Combined'[Loadout]))
RETURN
IF(
StatusValue = "OVERDUE" || LoadoutValue = "OVERDUE",
"OVERDUE",
BLANK()
)
Let me know if that worked.
If this helped, mark this answer as a solution. Kudos are appreciated!
Proud to be a Super User! | |
OverdueSummary =
VAR IsStatusOverdue = COALESCE(CONTAINSSTRING('Combined'[Status], "OVERDUE"), FALSE)
VAR IsLoadoutOverdue = COALESCE(CONTAINSSTRING('Combined'[Loadout], "OVERDUE"), FALSE)
RETURN IF(IsStatusOverdue || IsLoadoutOverdue, "OVERDUE", BLANK())
If rows still show wrong, your source text likely has extra spaces. Wrap each column in TRIM:
CONTAINSSTRING(TRIM('Combined'[Status]), "OVERDUE")
If this answer helped, please click 👍 or Accept as Solution.
-Kedar
LinkedIn: https://www.linkedin.com/in/kedar-pande
OverdueSummary =
VAR IsStatusOverdue = COALESCE(CONTAINSSTRING('Combined'[Status], "OVERDUE"), FALSE)
VAR IsLoadoutOverdue = COALESCE(CONTAINSSTRING('Combined'[Loadout], "OVERDUE"), FALSE)
RETURN IF(IsStatusOverdue || IsLoadoutOverdue, "OVERDUE", BLANK())
If rows still show wrong, your source text likely has extra spaces. Wrap each column in TRIM:
CONTAINSSTRING(TRIM('Combined'[Status]), "OVERDUE")
If this answer helped, please click 👍 or Accept as Solution.
-Kedar
LinkedIn: https://www.linkedin.com/in/kedar-pande
Hi,
You can use:
OverdueSummary =
VAR StatusValue = TRIM(UPPER('Combined'[Status]))
VAR LoadoutValue = TRIM(UPPER('Combined'[Loadout]))
RETURN
IF(
StatusValue = "OVERDUE" || LoadoutValue = "OVERDUE",
"OVERDUE",
BLANK()
)
Let me know if that worked.
If this helped, mark this answer as a solution. Kudos are appreciated!
Proud to be a Super User! | |
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 21 | |
| 19 |
| User | Count |
|---|---|
| 41 | |
| 32 | |
| 18 | |
| 18 | |
| 15 |