[Solved] Update text field to display a dataset value?

Hi,

Is it possible to display a dataset value in a text field?

I’ve tried the following…

$w("#txtSearchResults").text = "There are currently", count, "ISW's available";

Where #txtSearchResults is my text field and ‘count’ is the total count returned from my dataset. I’m not seeing any errors in the console log but the text just stops after “there are currently”

Any help, much appreciated.

Thanks,
Rachel

I solved this by replacing the commas with +

$w("#txtSearchResults").text = "There are currently " + count + " ISW's available";