Hi,
I have created collection named as personalBatch from dataverse table which is having /Type/ optionset. I wanted to read option set value of First record in collection. Unfortunately Text and Value property is showing error.
I have created collection named as personalBatch from dataverse table which is having /Type/ optionset. I wanted to read option set value of First record in collection. Unfortunately Text and Value property is showing error.
//Collection code
ClearCollect(
personalBatch,
Filter(
'Personal Effect Batches',
Barcode = txtPlacePersonalEffectsManualBarcode.Text And Deceased.Contact = galJobsList.Selected.Deceased.Contact
)
);
personalBatch,
Filter(
'Personal Effect Batches',
Barcode = txtPlacePersonalEffectsManualBarcode.Text And Deceased.Contact = galJobsList.Selected.Deceased.Contact
)
);
//I tried to read like
First(personalBatch).Type.Value
But .Value and .Text shows error.
Could you help me with this code?