I am trying to execute the below if else condition with the attached data. but it is throwing Sample data.xlsx (323.7 KB)
an error. Please help me in resolving the error.
The nesting of your parentheses is wrong in multiple places. One examples:
if(getYear(column("321DateFormat")!="1900"))
Note that the != comparison is inside the getYear(...) call, so you’ll either call getYear(true) or getYear(false). To fix your code, make sure that all calls to that function look like getYear(column("XXX")) with two closing parens after the column name.