Hello,
This should be pretty simple but I can't find the solution. I tried fiddling around in ETL and beastmode, as well as googling, but was unsuccessful.
Here is the problem:
I am trying to create a column that returns 1 when any unique Job has a PO#. For example, in the second row there is no PO, however the 1st row is also Job 1 and has a PO. So I want row 2 to return 1.
Job | PO # | Goal |
1 | 123 | 1 |
1 | | 1 |
2 | 124 | 1 |
2 | 125 | 1 |
3 | | 0 |
3 | | 0 |
3 | | 0 |
Thank you in advance for your help.