How Can I filter more informartion the the same column.In the column green I need filter by "razão" but specific number in this column
I cannot as I am on my mobile phone - you can provide screenshots!
from your first screenshot, you aren’t repeating the column each time. You need to state column = number OR column = number and so on, repeating the column name and the number each time
You can add: OR Razao != xxxx
@LETICIAHELENA please accept the solution(s) when you can to complete this thread
@LukeM Do you know how Can I do that?
You can link parts together via the OR operator! Something like:
Razao = 12345 OR Razao = 67789 and so on
If your numbers are being stored as text though, make sure to put quotes around the numbers: Razao = “12345” OR Razao = “67789”
@alexnajm I tried as you said above but is not working my informtion is double but when I try to add the filter shows like below:
Hey @LETICIAHELENA make sure you are aware of the data types in the column. If you have them stored as a numeric data type it would be Razao = 1112275 ...however, if the column was a string (text) data type you would have " " around the value, so it would be Razao = "1112275".
To find out more about data types, check out Alteryx Data Types 101 .
@LETICIAHELENA if it’s in a double format, then remove the quotes!
Razao = 12345 OR Razao = 67789 OR …
and so on as many times as you need
I'm trying do like as you said but the information in true is not correct. Atatched my worflow Can you help me ?
ok I got it. Now it's worked Thanksss And if I want exclude one specif number as well in the same column. Do you know how Can i proceed?
Thanksss