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.
The end goal of this DAX:
Here’s what I have currently--no trouble with replacing "False" fields (which are currently formatted as text) with "TBD."
goalExists =
IF([teams_with_goal]=0, "TBD", TRUE())
After this, it's clear that all my False values are replaced with TBD.
For reference, this is the teams_with_goal measure:
teams_with_goal =
CALCULATE(
DISTINCTCOUNT(SquadTeams[Id]) +0,
ALLNOBLANKROW('SquadHealthCheckGoal'[ID])
)
After creating the above measure, I was able to duplicate/change the column type to text and replaced with True/False. That being said, I can't seem to wrap my head around only replacing the "False" values for current or future months
Any insight is greatly appreciated 🙂
Solved! Go to Solution.
Try not to mix field types in your results. Oftentimes DAX will actually prevent you from doing that. In this scenario you should stick with all text values, ie "FALSE","TBD","TRUE" etc.
Learn about functions like ISBLANK() and COALESCE()
Try not to mix field types in your results. Oftentimes DAX will actually prevent you from doing that. In this scenario you should stick with all text values, ie "FALSE","TBD","TRUE" etc.
Learn about functions like ISBLANK() and COALESCE()
Appreciate your response---I'm going to work on it this week with a fresh mind!
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
23 | |
10 | |
10 | |
9 | |
7 |