Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi ,
I have a sharepoint column (Date column) and when using it in the dropdown value.
When i goto items and add filter Date = dropdown.selected.Value i get a error
"Incompatible types for comparison - Date,Text" .
Solved! Go to Solution.
I see that you are trying to compare a date value with a text value and since your SharePoint column is a date type and the dropdown returns a text value (dropdown.selected.Value), you need to either convert the text to a date or the date to a text, depending on your needs.
You can use the DateValue function to convert the text value from the dropdown to a date format before comparing it with your SharePoint date column.
Filter(
YourSharePointList,
DateColumn = DateValue(Dropdown.Selected.Value)
)
I see that you are trying to compare a date value with a text value and since your SharePoint column is a date type and the dropdown returns a text value (dropdown.selected.Value), you need to either convert the text to a date or the date to a text, depending on your needs.
You can use the DateValue function to convert the text value from the dropdown to a date format before comparing it with your SharePoint date column.
Filter(
YourSharePointList,
DateColumn = DateValue(Dropdown.Selected.Value)
)
Thank You Amira,
It worked well without error in Items, However i get error in my collect variable for that Date column collection
what do you want to achieve here ?
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!