Help

Re: Ignore #error & Infinity

Solved
Jump to Solution
464 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Nikos_Gaz
5 - Automation Enthusiast
5 - Automation Enthusiast

Hello,

I have a field that based on a closing date of a sale, converts the closing date to the ‘dddd’ so as i can see which day of the week i sell most. If I have not closed the status of a product it shows #error in the value. I’d like tobe empty.

DATETIME_FORMAT({Closed Date},‘dddd’)

1 Solution

Accepted Solutions
ScottWorld
18 - Pluto
18 - Pluto

Welcome to the community, @Nikos_Gaz!

Change your formula to this:

IF({Closed Date},DATETIME_FORMAT({Closed Date},‘dddd’))

Hope this helps! If this answers your question, could you please mark this comment as the solution to your question? This will help other people who have a similar question. :slightly_smiling_face:

See Solution in Thread

2 Replies 2
ScottWorld
18 - Pluto
18 - Pluto

Welcome to the community, @Nikos_Gaz!

Change your formula to this:

IF({Closed Date},DATETIME_FORMAT({Closed Date},‘dddd’))

Hope this helps! If this answers your question, could you please mark this comment as the solution to your question? This will help other people who have a similar question. :slightly_smiling_face:

Thank you so much! that was the solution