0

I am trying to get a Summary of multiple Cells into one Cell (for later use in GCalender). Trying to Concatenate a Date results into #ERROR! and similar questions and results found online dont work at all.

Example Sheet

Expected result should be:

="anything "&C2& " - " &TEXT(E2,"dd/mm/yyyy")

=anything thishappens - 10/03/2020

But Quoting the date alone will result in just a number (43900), and the TEXT and DATE formate will not work as found online or examples by Google.

1 Answer 1

2

It looks like you might be in Europe or somewhere where they use ; instead of , as the parameter separators in formulas. Try this:

="anything "&C2& " - " &TEXT(E2;"dd/mm/yyyy")

1
  • Its always the stupidest things, thanks for the help :)
    – Beardlongo
    Mar 8, 2020 at 12:40

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.