Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a problem with set analyses.
If I use this =avg( { $ < Site_Id_Name = { $(vEigenStation) } > } Pump_price)
I get an error "Error in set modifier ad hocelement list"
If I use this =avg( { $ < Site_Id_Name = { " $(vEigenStation)" } > } Pump_price)
I don't get a value
who can help me?
Regards,
Kris
Use single quotation marks:
If I use this =avg( { $ < Site_Id_Name = { '$(vEigenStation)' } > } Pump_price)
Hi,
Second one is the correct one.
Make sure the variable is holding a proper value before passing to the set analysis.
Regards,
Kaushik Solanki
avg( { $ < Site_Id_Name = { "$(=$(vEigenStation))" | } > } Pump_price) |
This isn't working.
This is what I have
Use single quotation marks:
If I use this =avg( { $ < Site_Id_Name = { '$(vEigenStation)' } > } Pump_price)
avg( {$<Site_Id_Name = {"ESSO EXPRESS WOMMELGEM (75)"} >} Pump_price)
check this and let us know if it is working
PS:change the text in bold to your original value because it may contain typo errors
Thanks All,
it is working!!