Hi everyone! I want to ignore seconds when u...

Hi everyone!

I want to ignore seconds when using โ€œCONCATENATEโ€

I have:

[DESTINATION] > i.e. โ€œWIDE STREETโ€ (type: text) [COLLECTHOUR] > i.e. โ€œ18:45โ€ (type: time, ignoring seconds)

and the concatenation column:

[DESTINATION.COLLECT] > โ€œWIDE STREET at 18:45โ€ (type: text)

using appsheet formula as is:

=CONCATENATE([DESTINATION]," at โ€œ, TIME([COLLECTHOUR])) or simply =CONCATENATE([DESTINATION],โ€ at ", [COLLECTHOUR])

BUTโ€ฆ

RESULT IS: [DESTINATION.COLLECT] > โ€œWIDE STREET at 18:45:00โ€

So is there a way to ignore seconds like โ€œIGNORESECONDS([COLLECTHOUR])โ€?

Thanks in advance!

0 7 461
7 REPLIES 7

Tried using MINUTE() and HOUR() but that only works with duration type

@Iron_Bikers

=CONCATENATE([DESTINATION]," at โ€œ,HOUR([COLLECTHOUR] - โ€œ00:00:00โ€),โ€:",MINUTE([COLLECTHOUR] - โ€œ00:00:00โ€))

OH YES! Awesome!. I didnt tried adding a math operation cuz I tought the system will interpretate as time, so give a mismach error.

Thank you very

much!

Or maybe just LEFT(CONCATENATE([COLLECTHOUR]),5)

LEFT seems not works. Is there a way to add zero, and see โ€œ12:05โ€ instead โ€œ12:5โ€?

May I ask what was the expression?

@Aleksi_Alkio Solved, LEFT() is working (sure typed wrong sentence) so there isnt problem with left zero. Thanks for all!

Top Labels in this Space