Hello - Thank you for the reply - we have used this exact entry - but the result is consistently a blank when generating the report. Documentation states the LookupSet function is only usable in Table, Tablix, …but not Textbox, so possibly root issue we thought, but have created 1x1 table with same formula with same results of blank, thus this post.
{Join(LookupSet(1, 1, Column2, “question3”), ", ")}
question3 is a table with 3 columns and in the data are 5 rows with values.
question3 is a dataset within a dataset, D_S_452, would this alter the syntax?
D_S_452
|_question3
|_other fields…
In the Expression Editor Data Sets D_S_452 and question3 are both shown as separate data sets.
D_S_452
|_question3
|_other fields…
question3
|_Column1
|_Column2
|_Column 3
Hopefully something here points to the issue…thanks again for the time.
or from the report json directly…
"DataSets": [
{
"Name": "D_S_452",
"Query": {
"CommandText": "jpath=$.[*]",
"DataSourceName": "S_452"
},
"Fields": [
{
"Name": "question3",
"DataField": "question3"
},
{
"Name": "question2",
"DataField": "question2"
},
...
},
{
"Name": "question3",
"Query": {
"DataSourceName": "$dataset:D_S_452/question3"
},
"Fields": [
{
"Name": "Column1",
"DataField": "Column1"
},
{
"Name": "Column2",
"DataField": "Column2"
},
{
"Name": "Column 3",
"DataField": "Column 3"
}
],
The JSON records are injected by application at report generation…