I am completely lost on how to move forward from here. I have a flow that when using a ElseIf statement
First operand: %Contains(NSTrace_CurrentLoad['Column7'], NSTrace_CurrentLoad['Column6']) AND Contains(NSTrace_CurrentLoad['Column8'], 'ARRI') OR Contains(NSTrace_CurrentLoad['Column8'], 'PLRM') OR Contains(NSTrace_CurrentLoad['Column8'], 'ARIL') OR Contains(NSTrace_CurrentLoad['Column8'], 'PACT')%
Operator: Equal to (=)
Second operand: True
This is the first data row that the ElseIf is looking at Column 6 Column 7 Column 8
| 13876734 |
|EMHU 200632 |
| |
|11/24/2024 04:15 PM |
|SHREVEPORT |
|AUSTELL |
|CHATTANOOGA |
|ARIL |
| | |
The flow will continue as if 7 contains 6 when after confirming that Column 7 is the word Chattanooga and Column 7 is the work Austell using a message box to test and see that the columns are indeed showing those words as the column variable.
The reason I need the above ElseIf is for the below second Data Row when it occurs
Column 4 Column 6 Column 7 Column 8
| 13869022| |
EMHU654479| |
|
|11/24/2024 12:51 AM |
|CHICAGO |
|AUSTELL |
|AUSTELL |
|ARRI |
| | |
Basically the first ElseIf statement above is for the second data row when running the flow and the first data row information should be using the following ElseIf Statement
First operand: %NotContains(NSTrace_CurrentLoad['Column7'], NSTrace_CurrentLoad['Column6']) AND NOT (IsBlank(NSTrace_CurrentLoad['Column4'])) AND Contains(NSTrace_CurrentLoad['Column8'], 'ARRI') OR Contains(NSTrace_CurrentLoad['Column8'], 'ICHR') OR Contains(NSTrace_CurrentLoad['Column8'], 'ARIL') OR Contains(NSTrace_CurrentLoad['Column8'], 'RAMP') OR Contains(NSTrace_CurrentLoad['Column8'], 'LDFC') OR Contains(NSTrace_CurrentLoad['Column8'], 'PURM') OR Contains(NSTrace_CurrentLoad['Column8'], 'ULCH') OR Contains(NSTrace_CurrentLoad['Column8'], 'ICHA') OR Contains(NSTrace_CurrentLoad['Column8'], 'LCHG')%
Operator: Equal to (=)
Second operand: True
Now the setup of the ElseIf's will work if I manually go in and change column 8 to a set of 4 letters that is in the second ElseIf statement and not in the first ElseIf but I would rather not have to do that everyday for this flow to work. I know there has to be something I am missing to make them work without having to manually make the change to Column 8 once I have my data each day. Thanks in advance.