Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
I need to concatenate two variables: vMeasure and vState.
Do you know how to do it?
Many Thanks
Bruno
My Expression:
=Count(
{Concat('$(vMeasure) $(vState)',)
}
DISTINCT
Units)
Oh, right, Bookmarks. Didn't read correctly. My mistake. Try this then:
count({ $(vMeasure) + $(vState) } distinct Units)
....or do your variables contain more than one bookmark per variable?
try count( $(vMeasure)&$(vState) distinct Units)
=Count(
{ [Consultas]+ [Realizado]
}
DISTINCT
UNITS)
Oh, right, Bookmarks. Didn't read correctly. My mistake. Try this then:
count({ $(vMeasure) + $(vState) } distinct Units)
....or do your variables contain more than one bookmark per variable?
I had just found the error. You are absolutely right.
Many Thanks
Bruno