vba - SSRS - How to get column value by column name -


i have 1 table rows , each row has column contains field name (say raw1 - 'number001', raw2-'shortchar003', etc). in order me value of these fields have use second table; table has 1 raw many columns (number001, number002, shortchar003, etc).

how can extract value?

good question..you can use lookup function

 =lookup(fields!citycolumn.value, fields!citycolumn.value, fields!countcolumn.value, "dataset1") 

or might have use string functions..ex left, substring, right same sql.if possible pls post data of both tables, explain in detail


Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -