RE: How to editable or change field type of calculate field CRM 2015
Hi,
It seems that you are trying to change the field type from Calculated field to simple field in dynamic CRM.
Calculated Fields are by default locked on form. Hence, we can't enter value manually and cannot change field type of field once the field is created.
So, there is no another way to make a Calculated field that user can't enter value manually or change its datatype.
For a workaround,
You can create Decimal and Two Options fields.
Write a plugin to implement calculate logic to set value in Decimal field.
In Plugin logic, you can check the Two Options field value to check whether Allow Calculate or not.
i.e.
- if Allow Calculate: Yes, then set Decimal field value
- if Allow Calculate: No, allow user to manually enter value.
Hope this helps.
Thanks!