Skip to main content
Solved

Ignore #error & Infinity

  • June 2, 2020
  • 2 replies
  • 19 views

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’)

Best answer by ScottWorld

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:

2 replies

ScottWorld
Forum|alt.badge.img+35
  • Genius
  • Answer
  • June 2, 2020

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:


  • Author
  • New Participant
  • June 2, 2020

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