function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Thabthimsaen WuttisakThabthimsaen Wuttisak 

Expecting 'SELECTION', 'MANIPULATION', got 'TYPE'.

Hi,

I am trying to use the following but it got this error (Wave Dashboard Analytics)

                        [
                            "BC_Wave__c",
                            "{{selection(BC_Wave__c_12)}}"
                        ],

Do you have any idea how to fix it?

Thanks,
Bass
Harshit Garg 6Harshit Garg 6
HI,Thabthimsaen,
 
"label": "BC_Wave__c",
 "name": "{{selection(BC_Wave__c_12)}}",

Thanks,
Harshit Garg
Thabthimsaen WuttisakThabthimsaen Wuttisak
Hi Hershit,

Thank you very much. For my case, I use the following and it works.( I use filter from another step

                            "BC_Wave__c",
                            "{{column(BC_Wave__c_12.selection, [\"BC_Wave__c\"]).asObject()}}"

Thanks,
Bass