Please clarify my question. I suppose to post this as question not sure if this is right place to post.
Try reading it using Read Range activity
Welcome to community
- Use Read Range activity
- Indicate that Pivot result range
- Output →
dtPivot - Use Assign activity
hasPayrollName = dtPivot.AsEnumerable().
Any(Function(r) Not String.IsNullOrWhiteSpace(r("Payroll Name").ToString))
- Use If activity
If hasPayrollName Then
'Logic A → Payroll Name exists (at least one row has value)
Else
'Logic B → Payroll Name is empty for all rows
Regards,
Gokul
