I have 2 rows for one user and need to take the data from field one from the second row and the data for field 2 from the first row. They have several other fields but they can be grouped.
FAIL | RITM0481828 |
Pass | AGRI |
So I want both to say Pass for field one and both to show RITM0481828 for field 2
Can you expand on the logic? The easy answer is a multi-row formula tool, however it would be helpful to know some more requirements to get you the best answer, things like:
I’ve handled similar cases in Alteryx by using a formula tool with an IF or ISNULL logic to prioritize which field to use. Something like: IF ISNULL([Field1]) THEN [Field2] ELSE [Field1] ENDIF. It’s a clean way to merge columns when one might be blank. Works great in parsing messy inputs or when consolidating overlapping data sources.
@SuzanneMoore wrote:I have 2 rows for one user and need to take the data from field one from the second row and the data for field 2 from the first row. They have several other fields but they can be grouped.
FAIL RITM0481828 Pass AGRI
So I want both to say Pass for field one and both to show RITM0481828 for field 2
To consolidate the data, you need to first identify the two rows belonging to the same user. Then, extract the desired values—"Pass" from the first field of the second row and "RITM0481828" from the second field of the first row—and use these values to update both rows, ensuring both records have the same consistent data in those fields.