Appian Community and Appian Academy are being upgraded. As a part of the upgrade, Appian Community is currently in read-only mode, and user registration is disabled until August 3. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!
The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.
Hi all,
I am getting data from excel sheet (3 Columns), I just need to validate 1 column in that excel sheet could you tell me how can i get the 1st column seperatly by using readexcelsheet() function
Discussion posts and replies are publicly visible
This is a good use case for a!forEach - since without looping over the returned data, it's difficult to index into a particular column (since as you noted in a previous reply, the first attempt to index automatically narrows the result down to that row).
a!localVariables( local!excelData: readexcelsheet( ... ).result, local!column1data: a!forEach( local!excelData, index(fv!item.values, 1, null()) /* replace "1" with any other column number you want to grab */ ), local!column1data )
this is working Thank you