Skip to main content
Solved

Formula for Daily Minimum

  • May 30, 2021
  • 2 replies
  • 24 views

Can anyone help me with a formula? Here’s what I want to do:
Take a total number of words: for example, 60,000
Subtract my current number of words: for example, 20,000
And then take that number (40,000) and divide it among the number of days left before my deadline.

TIA!

Best answer by kuovonne

The number of days left before your deadline is a formula field that displays a string of text, not a number. You need a formula based on the original due date (date field) and calculate the number of days remaining as a number, not a text string.

DATETIME_DIFF({Due Date}, TODAY(), 'days')

Then subtract and divide as you described.

( {Final Word Count} - {Current Word Count} ) / {Days Remaining}

2 replies

kuovonne
Forum|alt.badge.img+29
  • Brainy
  • Answer
  • May 30, 2021

The number of days left before your deadline is a formula field that displays a string of text, not a number. You need a formula based on the original due date (date field) and calculate the number of days remaining as a number, not a text string.

DATETIME_DIFF({Due Date}, TODAY(), 'days')

Then subtract and divide as you described.

( {Final Word Count} - {Current Word Count} ) / {Days Remaining}

  • Author
  • New Participant
  • May 30, 2021

Thanks so much for your help!