Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I have a time stamp column needs to be compared logically if it falls below or above certain time. when I use DAX fucntion, I get data type mismatch error as "DAX comparison operations do not support comparing values of type Date with values of type Text. Consider using the VALUE or FORMAT function to convert one of the values"
The function is:
Solved! Go to Solution.
You can use the TIME function to create a time value in DAX. Here is how you can modify your function:
Query1[Del_Time] < TIME(10, 0, 0)
Proud to be a Super User! |
|
Thank you, that worked!
You can use the TIME function to create a time value in DAX. Here is how you can modify your function:
Query1[Del_Time] < TIME(10, 0, 0)
Proud to be a Super User! |
|