Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
Is row.__rownum available in a Dataset?
TorstenS
Hi all!
I would like to include a row number as a computed column in my Dataset. This does not seem to be possible though.
In a data binding, I can use row.__rownum; trying to use it in the expression for a computed column, I get an error message telling me that this is not available.
Is there any way to work around this?
Regards,
Torsten
Find more posts tagged with
Comments
mwilliams
Hi Torsten,
For your computed column in your dataSet, you should just be able to use type integer with an aggregation of running count. This will create a computed column that counts the rows in the order they are in your dataSet.
Hope this helps.