Hi Alteryx Engineer,
I have one strict-formatted excel for client, there is some range for client data suppose A1: F20 , I need to check outside this range, if there is any white space and i need to identify it by knowing its location, for example is there is space at cell A35 and B50 I need to return "A35/B50 white space" at some column.
Solved! Go to Solution.
Hi Sparksun, I want to check if there is white space outside the data range, your solution is to check inside the data range, for below i wanna get A44 as my result
actually @sparksun 's solution checks outside the range - in the example the range ends at 3, not 20 as you described.
Just change the value 3 to 20 in this filter:
My solution is ony a sample for you to understand how to build up the logic.
In my sample data,A1:C3 is the range for client data,I use filter tool to get only the data out of the range and check only Null data out of A1:C3.Based on this logic, you can make any change to match your own actual data.
ok I understand now thanks for the explaination