Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a measure that "counts" the number of rows which contains certain strings. I want a drill through for the visual that shows the count. How can I filter the table to show only those rows which were counted in the measure?
Here is the measure,
Solved! Go to Solution.
@monishd Create a calculated column in your IncidentTable that checks if the short_description contains any of the specified strings.
IncidentTable[IsDiskSpaceRelated] =
IF(
CONTAINSSTRING(IncidentTable[short_description], "Extend Disk") ||
CONTAINSSTRING(IncidentTable[short_description], "Increase Disk Space") ||
CONTAINSSTRING(IncidentTable[short_description], "Space") ||
CONTAINSSTRING(IncidentTable[short_description], "Clean and Remove") ||
CONTAINSSTRING(IncidentTable[short_description], "Free Space") ||
CONTAINSSTRING(IncidentTable[short_description], "Capacity is Full") ||
CONTAINSSTRING(IncidentTable[short_description], "Increase the VM Capacity") ||
CONTAINSSTRING(IncidentTable[short_description], "Requesting to increase"),
1,
0
)
Use this calculated column to filter the table visual. You can do this by adding a filter to the table visual where IsDiskSpaceRelated equals 1.
Proud to be a Super User! |
|
Hi @monishd
Thanks for reaching out to the Microsoft Fabric Forum Community.
And aslo Thanks to @bhanu_gautam for Promt and useful response.
Just following up to see if the solution provided was helpful in resolving your issue. Please feel free to let us know if you need any further assistance.
If the response addressed your query, kindly mark it as Accepted Solution and click Yes if you found it helpful — this will benefit others in the community as well.
Best regards,
Prasanna Kumar
@monishd Create a calculated column in your IncidentTable that checks if the short_description contains any of the specified strings.
IncidentTable[IsDiskSpaceRelated] =
IF(
CONTAINSSTRING(IncidentTable[short_description], "Extend Disk") ||
CONTAINSSTRING(IncidentTable[short_description], "Increase Disk Space") ||
CONTAINSSTRING(IncidentTable[short_description], "Space") ||
CONTAINSSTRING(IncidentTable[short_description], "Clean and Remove") ||
CONTAINSSTRING(IncidentTable[short_description], "Free Space") ||
CONTAINSSTRING(IncidentTable[short_description], "Capacity is Full") ||
CONTAINSSTRING(IncidentTable[short_description], "Increase the VM Capacity") ||
CONTAINSSTRING(IncidentTable[short_description], "Requesting to increase"),
1,
0
)
Use this calculated column to filter the table visual. You can do this by adding a filter to the table visual where IsDiskSpaceRelated equals 1.
Proud to be a Super User! |
|
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.