Forum Discussion

szenatti's avatar
szenatti
New Member
10 years ago
Solved

Default value in Report Filter Panel

Hi All,   I have a requirement to set default values in a Country filter and also set Current Month as default.   How can I do it in PowerBI?   Thanks,   Sergio 
  • v-qiuyu-msft's avatar
    10 years ago

    Hi szenatti,

     

    Currently, we are not able to set Report level filter based on current month directly, as DAX is not available in Report Level filter panel. To workaround the issue, we can create a calculated column via expression below:

     

    Column = IF(MONTH(Table1[Date])=MONTH(NOW()) && YEAR(Table1[Date])=YEAR(NOW()),"current month","")

     

    Then drag this column field to Report Level filter panel, check "current month" as default. You can also drag the Country field to Report Level Filter, then check a prefer value as default.

     

     

    The way is similar to the method in this article: Finding the Latest Date in Power BI Desktop.

     

    If you have any question, please feel free to ask.

     

    Best Regards,
    Qiuyun Yu