Reputation: 423
Hello guys I want a excel query that shows me below outout.
Timesheet : 28 August, 2018 - 03hr:05min
Second value is current date with formatting as (DD MMMM, YYYY
)
and last value get from another cell.
I have tried but its not working for me:
='Timesheet : '&today()&' - '&C31
Upvotes: 0
Views: 50
Reputation:
try,
="Timesheet : "&text(today(), "dd mmmm, yyyy")&" - "&C31
'alternate
="Timesheet : "&text(today(), "dd mmmm, yyyy - ")&text(C31, "hh\h\r:mm\m\i\n")
Upvotes: 3