Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Havent been able to figure it out with ContainsString.
Matrix Priority =
Switch(
True (),
'Tasks/Inc''s Combined'[result.short_description] = "JDSS New", "Now",
'Tasks/Inc''s Combined'[result.priority] = "2" && 'Tasks/Inc''s Combined'[result.closed_by] = " ", Now,
'Tasks/Inc''s Combined'[result.priority] <> "2" && 'Tasks/Inc''s Combined'[result.closed_by] = " ", Next,
)
Any help would be appreicated it!
B
Solved! Go to Solution.
@Anonymous
Not sure the data type and how your table is constructed but can you try the following column
Matrix Priority =
VAR __Desc = 'Tasks/Inc''s Combined'[result.short_description]
VAR __Priority = 'Tasks/Inc''s Combined'[result.priority]
VAR __ClosedBy = 'Tasks/Inc''s Combined'[result.closed_by]
RETURN
SWITCH (
TRUE (),
CONTAINSSTRING ( __Desc, "JDSS New" ), "Now",
__Priority = 2
&& __ClosedBy = BLANK (), "Now",
__Priority <> 2
&& __ClosedBy = BLANK (), "Next"
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Anonymous
Not sure the data type and how your table is constructed but can you try the following column
Matrix Priority =
VAR __Desc = 'Tasks/Inc''s Combined'[result.short_description]
VAR __Priority = 'Tasks/Inc''s Combined'[result.priority]
VAR __ClosedBy = 'Tasks/Inc''s Combined'[result.closed_by]
RETURN
SWITCH (
TRUE (),
CONTAINSSTRING ( __Desc, "JDSS New" ), "Now",
__Priority = 2
&& __ClosedBy = BLANK (), "Now",
__Priority <> 2
&& __ClosedBy = BLANK (), "Next"
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
| User | Count |
|---|---|
| 57 | |
| 44 | |
| 28 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 74 | |
| 63 | |
| 40 | |
| 23 | |
| 22 |