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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
15 | |
7 | |
6 |