Hello, I'm currently converting excel file to record list. But I encounter error "Requested value 'baseline' was not found." Can someone explain this error to me? Thanks
Hi @Rachelle
The error “Requested value ‘baseline’ was not found” usually occurs when a value or an enum is expected, but the corresponding value is missing or not defined in your data source. Here are a few things you can check:
Excel Data: Verify if the ‘baseline’ value exists in the Excel file you are converting. Ensure that all required fields or values are properly defined.
Mapping: Check if the conversion logic is mapping the correct column or value from the Excel file to the record list. Ensure that ‘baseline’ is a valid value that exists in your enum or schema.
Enum or Record Definition: If you are using enums, make sure that the ‘baseline’ value is part of the defined enum in your model. If it’s a record, ensure it is correctly included in the list of values you’re working with.
Hope this helps!
I was using regular text fields in my record list. How can identify the baseline for it? Can you provide me an example for this? Thank you! Appreciate your help