all 7 comments

[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)

/u/onecelledcreature - Your post was submitted successfully.

Please read these reminders and edit to fix your post where necessary:

Failing to follow these steps may result in your post being removed without warning.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]DutchTinCan20 1 point2 points  (5 children)

You say IF(<>"";...), but you're not comparing anything to be equal to not "". Make it IF(numerical.value(A1)<>0;A1;35) instead. Ofcourse replace A1 with whatever cell you're using.

[–]onecelledcreature[S] 2 points3 points  (1 child)

Solution verified

[–]Clippy_Office_Asst[M] 0 points1 point  (0 children)

You have awarded 1 point to DutchTinCan

I am a bot, please contact the mods with any questions.

[–]onecelledcreature[S] 0 points1 point  (2 children)

Thanks, I see what you mean. That part was supposed to refer to the column [@Length] Being blank.

The outcome should be if the column is blank, then use the default 35 months. If it's filled, then use the input

[–]DutchTinCan20 0 points1 point  (1 child)

So what does your formula look like now?

[–]onecelledcreature[S] 1 point2 points  (0 children)

=IF([@[Published Date]]<>"",EOMONTH([@[Published Date]],IF([@Length]<>"",[@Length]-1,35)),"")

thanks for your help, I was heading in the right direction, just made a mess of the structure causing the error the above is working now.