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 ve tryng to filter the column and its been a hard time. I have just 1 column and i need to filter this column between two numbers.
i need to make a new column getting the numbers of this column between -8 and 8 .
Ex.
-11
10
6
4
the new column will be only 6 and 4 excluding -11 and 10
Solved! Go to Solution.
@estt Try:
New Column =
VAR __Column = [Column1]
VAR __Result = IF(__Column > -8 && __Column < 8, __Column, BLANK())
RETURN
__Result
It worked man, thanks!
@estt Try:
New Column =
VAR __Column = [Column1]
VAR __Result = IF(__Column > -8 && __Column < 8, __Column, BLANK())
RETURN
__Result
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 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |