Hello All,
I connect to a Dataverse table to retrieve the data and the datatype of all fields are identified correctly to Powerapps.
When I create a new collection (because I join 2 Dataverse tables) then the datatypes of all fields are converted to text (including the date fields).
ClearCollect(ANPR_joined_dataset,
AddColumns('ANPR - LiveFeeds NEW',
"Full_Name_or_Service", LookUp('ANPR - Vehicle Registration Plate Mappings', Car_Plate_No_No_Spaces='ANPR - LiveFeeds NEW'[@cre34_carplate], Full_Name_or_Service)
)
);
The change of date fields to text causes additional problems to my powerapps report as I cannot query the data.

How can I prevent this from happening?
Also it doesnt give me the option to change the control type from Text Column to Datetime column
Is there an efficient way to change the text date column to date column?
I used various formulas for the conversion from Text to Date (or Datetime) but when I query the data using the new date column it never returns any results.
It seems that it doesnt understand the format of the new date column.
Thank you