1

I am trying to display the value of a column in the tag of my custom field.

To get the column value, I can simply use:

<Column />

To get the value of another column, I can simply use:

<Column Name="InternalFieldName" />

The problem I am having is that I have the name of the column that I am interested in stored in a hidden field.

I can get the value of my hidden field using:

<Property Select="SomeColumnName" />

But how do I use that value in the column name attribute.

I want to do something like this:

<Column Name="<Property Select="SomeColumnName"/>" />

Any ideas????

Thanks,

c0deNinja
  • 3,956
  • 1
  • 29
  • 45

1 Answers1

0

You may have to create a custom field based on a calculated field in order to do this. There is no CAML syntax for what you required.

Community
  • 1
  • 1
Nat
  • 14,175
  • 5
  • 41
  • 64