@Anonymous
You can achieve your goal without the CONCATENATE function by using this code in the Text property of your label.
If(!IsBlank(Label53_7),Label53_7.Text,",")&
If(!IsBlank(Label53_6),Label53_6.Text,",")&
If(!IsBlank(Label53_5),Label53_5.Text,",")&
If(!IsBlank(Label53_4),Label53_4.Text,",")&
If(!IsBlank(Label53_3),Label53_3.Text,",")&
If(!IsBlank(Label53_2),Label53_2.Text,",")&
If(!IsBlank(Label53_1),Label53_1.Text,",")&
If(!IsBlank(Label53),Label53.Text,",")
If you must get rid of the trailing comma at the end of the last value then you'll need this code instead.
Left(
If(!IsBlank(Label53_7),Label53_7.Text,",")&
If(!IsBlank(Label53_6),Label53_6.Text,",")&
If(!IsBlank(Label53_5),Label53_5.Text,",")&
If(!IsBlank(Label53_4),Label53_4.Text,",")&
If(!IsBlank(Label53_3),Label53_3.Text,",")&
If(!IsBlank(Label53_2),Label53_2.Text,",")&
If(!IsBlank(Label53_1),Label53_1.Text,",")&
If(!IsBlank(Label53),Label53.Text,","),
Len(
If(!IsBlank(Label53_7),Label53_7.Text,",")&
If(!IsBlank(Label53_6),Label53_6.Text,",")&
If(!IsBlank(Label53_5),Label53_5.Text,",")&
If(!IsBlank(Label53_4),Label53_4.Text,",")&
If(!IsBlank(Label53_3),Label53_3.Text,",")&
If(!IsBlank(Label53_2),Label53_2.Text,",")&
If(!IsBlank(Label53_1),Label53_1.Text,",")&
If(!IsBlank(Label53),Label53.Text,",")
)-1
)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."