Hello,
I have a sheet that is pulling data from Microsoft Dynamics CRM using the connector where the date data is not coming across correctly if the column is setup as a date format. I have therefore setup the column in the sheet as a text field.
I have a summary formula which uses this column to summarize data by quarter but I cannot get it to work using a column that is a text format. How do I convert the text format to a date format in a summary field? I have also tried to create another field in a date format that stores the corrected date and reference that in the summary formula, but the summary formula does not seem to like using fields that are based off calculations as I get an Invalid Data Type error.
Here is my current formula for my summary field that works if the sheet column is a date format. How do I change it to reference a text column with date data?
=SUMIFS([Sales Order Value LC]:[Sales Order Value LC], Region:Region, OR(@cell = "USA East", @cell = "USA West", @cell = "USA Central"), [Close Date]:[Close Date], AND(@cell <= DATE(2023, 9, 30), @cell >= DATE(2023, 7, 1)))
Thanks