Forum Discussion
kaka
Helper II
9 years agoCompare text with today()
I have a column called offer_date which has the followig value: Wednesday, 27 January, 2016 . I am trying to compare this date with today's date in power bi DAX formula. IF(DATEVALUE(offer_...
Phil_Seamark
Microsoft Employee
9 years agoWhat happens when you just create a column with the following code
new column = DATEVALUE('mytable'[offer_date])secondly, do you round out your IF statement as follows?
new Column2 = if(DATEVALUE('myTable'[offer_Date]>=Today()),"Good Job","")Oh and are you creating calculated columns as opposed to calculated Measures?