This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
Upgrading Server to version 22.1? We’ve enabled the faster AMP engine by default. Read about how these system settings changes might affect you.
Hello,
I have a question regarding conditional formatting in Alteryx. I have three excel spreadsheets that I combined into one master spreadsheet in Alteryx. For the three spreadsheets, I want to create a conditional statement that only brings in ( refresh) the rows if there is content in columns B or D.
I've been working on trying to figure this out, and no luck. Also, I could not find an answer in the community. Is there a solution to this question? Please see attached. In this example, the master file would only show rows 1-9 after I auto-refresh the file.
Solved! Go to Solution.
Hi @ChelleVaughns,
I'm not sure how you might go about only brining in certain rows but Alteryx can handle large volumes of data so I would recommend bringing in all of the data and then using a Filter tool to keep only the rows you want. The formula would be:
!IsNull([Initiative]) OR !IsNull([Milestone])
So the output you will get from the T (True) anchor is just the rows where column B (Initiative) or D (Milestone) are not null.