Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |