BBQ
Guest
|
Posted:
Mon Jan 10, 2005 6:33 pm Post subject:
Default Column Select Calculated Value |
|
|
Hi All,
In Document Library, How to make a Column Default value is
selected "Calculated Value", I only can set the default
value in this column,
<Field Type="Text" Name="Owner" DisplayName="Owner"
Sealed="TRUE" Filterable="TRUE" Required="TRUE">
<Default>=Me</Default>
</Field>
Thanks All. |
|
Gary A. Bushey [MVP]
Guest
|
Posted:
Mon Jan 10, 2005 11:12 pm Post subject:
Re: Default Column Select Calculated Value |
|
|
Here is an example taken from the SDK:
<Field Type="Calculated" DisplayName="Field_Display_Name"
ResultType="Number" ReadOnly="TRUE" Name="Field_Internal_Name">
<Formula>=Other_Field_Name*100</Formula>
<FieldRefs>
<FieldRef Name="Other_Field_Name"/>
</FieldRefs>
</Field>
--
Gary A. Bushey
SPS MVP
bushey@mindspring.com
"BBQ" <anonymous@discussions.microsoft.com> wrote in message
news:198301c4f710$8b7a6c10$a401280a@phx.gbl...
| Quote: | Hi All,
In Document Library, How to make a Column Default value is
selected "Calculated Value", I only can set the default
value in this column,
Field Type="Text" Name="Owner" DisplayName="Owner"
Sealed="TRUE" Filterable="TRUE" Required="TRUE"
Default>=Me</Default
/Field
Thanks All. |
|
|