Hi folks,
I have an annoying issue which i cant see the solution to so any help is much appreciated.
I have a table with a number of columns. Most of the columns are computed columns, from the 3rd column on my formula is causing the error "Error validating the formula for column "Quotation Received From Vendor".
	
	
	
		
	
	
	
		
	
	
	
		
So the top two work perfectly. The 3rd column gives me an error and will not save. Im not pasting them in as is im (obviously) pasting them from my editor as single lines.
Any help appreciated!
 I have an annoying issue which i cant see the solution to so any help is much appreciated.
I have a table with a number of columns. Most of the columns are computed columns, from the 3rd column on my formula is causing the error "Error validating the formula for column "Quotation Received From Vendor".
		Code:
	
	
	case when [Issue Technical Package Actual] IS NULL then 
	dateadd(day,-81,dateadd(day, -[LEAD_TIME]*(7),[FIELD_NEED_DATE])) 
else 
	[Issue Technical Package Actual] 
end
		Code:
	
	
	case when [RFQ Issued to Vendor Actual] IS NULL then 
	case when [Issue Technical Package Actual] IS NULL then 
		dateadd(day,-74,dateadd(day, -[LEAD_TIME]*(7),[FIELD_NEED_DATE])) 
	else 
		dateadd(day,7,[Issue Technical Package Actual]) 
	end 
else 
	[RFQ Issued to Vendor Actual] 
end
		Code:
	
	
	case when [Quotation Received From Vendor Actual] IS NULL then 
	case when [RFQ Issued to Vendor Actual] IS NULL then 
		case when [Issue Technical Package Actual] IS NULL then
			dateadd(day,-60,dateadd(day, -[LEAD_TIME]*(7),[FIELD_NEED_DATE])) 
		else 
			dateadd(day,21,[Issue Technical Package Actual)
		end 
	else
		dateadd(day,14,[RFQ Issued to Vendor Actual]) 
	end
else 
	[Quotation Received From Vendor Actual] 
endSo the top two work perfectly. The 3rd column gives me an error and will not save. Im not pasting them in as is im (obviously) pasting them from my editor as single lines.
Any help appreciated!
			
				Last edited: 
			
		
	
								
								
									
	
		
			
		
		
	
	
	
		
			
		
		
	
								
							
							 
	 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		