Forum Discussion

SmallCityGuy's avatar
SmallCityGuy
Regular Visitor
10 years ago
Solved

Scheduled Refresh Issue - Text.Combine - PowerBI Desktop PowerQuery (Advanced Editor) - OData

Hi, I've recently begun to use OData calls for pulling data from Microsoft CRM.  I'm currently using a programmatically created DataTime value to filter an EmailSet by the last 30 days.  This pulls d...
  • ankitpatira's avatar
    10 years ago

    SmallCityGuy  Perhaps easiest way to do is create a calculated column using below code and use that in slicer to filter.

     

    Column = IF(YourTable[EmailDateColumn] < (TODAY()-30),"less than 30 days","not less than 30 days")

     

    This way you won't have to worry about any data refresh issue.