This seems pretty straightforward, feels like I'm missing something simple.
After setting up some surface results, I'm extracting some info (like x-section area). I can get the result as a scalar parameter and store it into an array, but I can't store it directly into the array location:
*dim,RESULTS,array,7,21
! ... do the surface mapping commands
! This works
sueval,ASDF,da,sum
RESULTS(1,1)=ASDF
! This doesn't: "Parameter RESULTS needs subscripts"
sueval,RESULTS(1,1),da,sum
This works for other commands like *get: *get,RESULTS(1,1),node,,count
... maybe I'm missing something more fundamental?