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
Hello,
I have 3 columns with different information and I would like to exclude some values and I am stuck as I have too many different arguments.
For exemple I would like to exclude:
- all rows for which column A starts with T000 or
- all rows for which column B = US or
- all rows for which column C contains "tube"
Many thaks for your support!
Hi @Laeti
whats your desired result?
you can try a column like
Column =
IF(
RIGHT([column A], 4) = "T000" || [column B] = "US" || [column C] = "tube",
FALSE(),
TRUE()
)
then filter out in visual rows with Column = FALSE
Thanks.
It works perfectly well for the first 2 columns but the column C is not = but it is contains tube. How can I mnage that third one? Thanks
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.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 15 | |
| 8 | |
| 8 | |
| 8 |