Google Sheets – Issue with Custom Number Format

formattinggoogle sheets

I have a number cell formatted in this way:

#,#" days";.

Nevertheless, if I write 1.5the output is 1 days even if the content is still 1.5.

Otherwise, if I write 1,5 the output will be as it is 1,5—without the text days.

As you can see from the screenshot below, according to the formula output suggestion it should show 1,5 days.

number_format

Do you have any idea?

NEW DETAILS:

@Jacob Jan Tuinstra: Thanks, I've tried your solution of the increase decimal places button that adds the decimal also when the decimal is 0. I would like to avoid it. That's the target I would reach, and I don't have an answer for it.

What happens doing the increase decimal places is the following formula:

enter image description here

In the column, when I have days without decimal like 2 days it will show 2.0 days. I would like to avoid the manual correction with the “decrease decimal places” because I have to manage a huge amount of data.

Best Answer

I'm afraid this is more answering "do you have any idea?" rather than giving a solution.

The primary issue here is your locale, as mentioned in your comment on the question. Custom number formats are not agnostic to the locale-specific number formats. In the case of the UK locale, commas are regarded as thousands separators, and periods are regarded as decimal separators. So your custom format #,#" days" is essentially just instructing Sheets to format with a comma as a thousands separator, with no decimal places (it is functionally equivalent to #,###" days".

As you saw, when you directly enter 1,5, this isn't formatted at all, because in the UK locale this is not recognised as a valid number (or date, or anything numeric), and is stored as a text string.

So an option is to change to a locale that uses a comma as a decimal separator (eg Italy). However (and this is a big "however") I have had a lot of trouble getting the custom formats to work in such locales; the implementation appears to leave a bit to be desired.

Another option is to keep your current locale, and make do with a period for a decimal separator, and use the format #.# "days". The "however" here is that the decimal point is included even when it is not needed (ie whole numbers), which is irritating, and I don't know of a workaround in Sheets using custom formatting alone.

A third option is to use spreadsheet formulae to reproduce the values in the appropriate format. The reproduced data would be text strings, so you should still reference the raw values (which might be in a column that could be hidden) in formulae. Downside is of course the duplication of data and reduced usability.

And lastly, Google Apps Script could auto convert values to text strings in the desired format; again you would have to consider formulae that reference these cells.

I hope this gives some insight, and I really hope to be able to delete this answer if someone has a watertight solution that can be achieved in custom formatting alone.