Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

BEGGING FOR HELP

Hi,    I asked a few times before and I want to try one more time to get for help. I am kind of new with Power BI. I need to create buttons to change time period on the page for tables. Here is wha...
  • v-yalanwu-msft's avatar
    4 years ago

    Hi, Anonymous ;
    If you use button ,you could use bookmark ,such as:

    1.create 6 buttons.

    2.create three measure.

    2hours = 
    var _diff=DATEDIFF(MAX('Table'[DateTime]),NOW(),HOUR)
    return IF(_diff<=2&&_diff>=0,1)
    2hours = 
    var _diff=DATEDIFF(MAX('Table'[DateTime]),NOW(),HOUR)
    return IF(_diff<=2&&_diff>=0,1)
    24hours = 
    var _diff=DATEDIFF(MAX('Table'[DateTime]),NOW(),HOUR)
    return IF(_diff<=24&&_diff>=0,1)

    3.create 6 bookmarks.

    2hours:

    12 hours:

    24 hours:

    week:

    custom:add other page

    4:add action to button.

    The final output is shown below:

     

    Or you could use slicer may be more convenient.
    Best Regards,
    Community Support Team_ Yalan Wu
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.