I am using a component to display Items in a gallery.
The code is the following :
Filter(
[@medicoes];
'Tipo de Medição' = LookUp(
Choices( 'Tipo de Medição (medicoes)');
Text(Value) = Component.OptionSetValue
).Value;
'Informacao Clinica'.id = varClinicaDador
);
Sometimes, I get the error "Error: No Scalar Value formatter registered for unsupported DType N".
OptionSetValue is a Text propertie of the component, that I am using to obtain the 'Tipo de Medição' that I need.
What am I missing?
Thanks in advance!