Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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

@estt Try:
New Column =
VAR __Column = [Column1]
VAR __Result = IF(__Column > -8 && __Column < 8, __Column, BLANK())
RETURN
__Result

It worked man, thanks!
Check out the November 2025 Fabric update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!