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.
Is it possible to read a password protected excel?
I tried using function readexcelsheetpaging() as below
readexcelsheetpaging(
excelDocument:<<doc>> sheetNumber:0, pagingInfo:a!pagingInfo(1,-1),
password:"ABCD@1234")
However, I am getting error:
Expression evaluation error at function 'readexcelsheetpaging': The passed parameter(s) are of the wrong type. Received the type com.appiancorp.common.xml.JaxbConversionException: JAXB was not able to produce a value for typed value TypedValue[it=3,v=ABCD@1234] as java class java.lang.Integer.
Discussion posts and replies are publicly visible
Did you try to pass the parameters in the order as defined by the function? The fourth parameter is an integer.
Thanks @Stefan Helzle , It worked!!