Forum Discussion
dataflow - if there is a row present
- 1 year ago
I would add a dummy row with the necessary columns before that step, so that the step doesn't fail, and then I would filter away the dummy row afterwards.
- 1 year ago
I created a HelperRow which only has columns and no rows.
Then after the pivot step, I appended this helper row.
It seems fine now
thank you
you mean to have try catch inside dataflow gen2? is this the only way?
how is this possible?
thanks
You could add a dummy row.
However, do you want the dataflow to succeed if there is no data?
- arkiboys21 year ago
Helper IV
yes to succeed if there is no row. thanks- frithjof_v1 year ago
Community Champion
I would add a dummy row with the necessary columns before that step, so that the step doesn't fail, and then I would filter away the dummy row afterwards.
- arkiboys21 year ago
Helper IV
I created a HelperRow which only has columns and no rows.
Then after the pivot step, I appended this helper row.
It seems fine now
thank you