Sign in to join the conversation:
Hi,
I am trying to write a formula that returns a flag if one of column 1,2,3,4,5,6,7 isn't checked. I have tried using the IF and OR formula together but am getting #Unparseable.
Any ideas/help will be appreciated.
Thanks
Hi bukolatadio,
Try using something like this:
=IF(OR([Column1]@row = 0, [Column2]@row = 0, [Column3]@row = 0, [Column4]@row = 0, [Column5]@row = 0, [Column6]@row = 0), 1, 0)
Thanks Alejandra, will try this and let you know how it goes.
Thanks Alejandra,
I have had to add some other conditions to this and modify it and I was able to get through.
I'm trying to get a formula for a sheet summary value to calculate average duration of rows where Risk Type = "EDAM Risk" and Status = "Resolved - Mitigated" or "Resolved - Decision." Assuming: Duration is in a column named Duration Risk Type is in a column named Type Status is in a column named Status I've been using the…
Hi, I am using this formula =IF([Warranty Status]@row = "Warranty Expired", IF(AND([Asset Status]@row = "In-Stock), "Out Of Warranty","")) Its says the formula is unparseable. I can't figure out the issue with the formula. Help is appreciated.
I am trying to write a cross sheet formula and keep getting the incorrect argument set error. The formula I wrote is: =SUMIFS({Total Poles}, {Vendor}, "ALLO", {Date}, >=TODAY(-30)) My formula is stating that I sound sum the amount of poles where the vendor column is Allo and where the date column lists dates within the…