This website uses Cookies. Click Accept to agree to our website's cookie use as described in our Privacy Policy. Click Preferences to customize your cookie settings.
@maahutch In the FIlter Snap, you can put a ternary condition, checking if the _dataset_name parameter is empty or not. If it is empty, process all records, if not, select only that record: _dataset_name != "" ? db_field == _dataset_name : trueI supo...
@AvaniAnand If you want to add another mapping rule, you can do that withnin the existing mapKeys function: map(x => x.mapKeys((value, key) => key.contains('Memo') ? "description" : (key.contains('unique_id') ? "custcol_xero_unique_key" : key)))Or, i...