โ01-27-2026 11:35 PM
{
Rows:
[
{
Employee name: Test,
Geo zone: zone,
Job profile comp band: Sr.Manager Testing,
Location: Test,
Manager: Al-Test,
Position created date: 2020-03-13T12:02:15.436000-07:00,
Position ID title: dsfdsflka,
Position status: Filled
},Iโm using Workday Get Report activity. I need to match the input Job Profile Comp Band with the input value Iโm passing, without using a loop. Once a match is found, I need to extract the Employee Name and EEO Zone.
The comparison should be case-insensitive (using downcase) and should check whether the value contains the input.
โ01-28-2026 06:36 AM
Hi @Buvi ,
Here I am adding a solution. Please kindly check and let me know if you have any questions.
โ02-04-2026 01:25 AM
I get it what you are saying I have to downcase the content also
The comparison should be case-insensitive (using downcase) and should check whether the value contains the input
โ01-30-2026 08:44 AM
Hi @Buvi , you can use the function 'where' and 'pluck'. example of formula:
array.where(Job profile comp band: 'Sr.Manager Testing').pluck('Employee name')
tell me if you encounter any problems