Trouble with column references not displaying as expected

Hi I’m having issues with referenced columns not displaying as expected.

In this case I have a table called Check ins.
I’ve used a virtual column to create a unique title. In the past I concatenated a Text term with the extracted Month, Day and Year of when the reflection was created but I ended up with duplicate titles.

So now I want to use the value of a column [Commitment] which is a ref column along with the extracted Month, Day and Year.

It works for the most part. But the value of [Commitment] is coming back with the key value, instead of the text column that I have chosen as the label for that table. Any ideas on how to override this?


Solved Solved
0 2 332
1 ACCEPTED SOLUTION

Of course it does!!! Thanks Jonathon. You’re a rock star!

View solution in original post

2 REPLIES 2

Does this work:

CONCATENATE(
  "Reflection on ",
  [Commitment].[Commitment],
  " for ",
  TEXT([Created], "mm/dd/yyyy")
)

Of course it does!!! Thanks Jonathon. You’re a rock star!

Top Labels in this Space