function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Vipul Vaghela 2Vipul Vaghela 2 

How to create nested field for custom object

Helllo 
How can i create field for custom object for the following thing.
User-added image
Gyanender SinghGyanender Singh
Hi Vipul,

Please let me know what's the meaning of the nested field and about your whole requirment.

Thanks,
Gyanender Singh
07503868174
Vipul Vaghela 2Vipul Vaghela 2
Hi Gyanender
Thanks for ur reply
I have form with following field

Client Name : TextField
Program Name :TextField
Business Goal :as Per above image view


User can add multiple Business Goal along with min and max value
now Client Name value map with  Client Name custom field same as for Program Name

But what about Business Goal 

if User enters

  Pick List                  min   max
1.Business Goal 1    25     25
2.Business Goal 2    10     20

so how can i map above value to custom field ?
how to store data in custom field something like ?
[
      {Business Goal:BG1,min:25,max:25},
      {Business Goal:BG2,min:10,max:20}
]
can we achieve this withoout code ?


Thanks