Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Change filter linguage

Hello friends, how are you?

 

Someone can help me to change a linguage of this filter?

 

 

Thanks a lot!

  • Hi Anonymous ,

    If you want to show the month column in Portuguese, you can create a calculated column like this:

    Mês =
    SWITCH (
        MONTH ( [Date] ),
        1, "Janeiro",
        2, "Fevereiro",
        3, "Marchar",
        4, "abril",
        5, "Maio",
        6, "Junho",
        7, "Julho",
        8, "Agosto",
        9, "Setembro",
        10, "Outubro",
        11, "novembro",
        12, "dezembro"
    )
    

    In a new report, if you want the entire .pbix report to be in Portuguese, you can go to File > Options and Settings > Options > Regional Setting > select Portuguese.

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

2 Replies

  • Hi Anonymous ,

    If you want to show the month column in Portuguese, you can create a calculated column like this:

    Mês =
    SWITCH (
        MONTH ( [Date] ),
        1, "Janeiro",
        2, "Fevereiro",
        3, "Marchar",
        4, "abril",
        5, "Maio",
        6, "Junho",
        7, "Julho",
        8, "Agosto",
        9, "Setembro",
        10, "Outubro",
        11, "novembro",
        12, "dezembro"
    )
    

    In a new report, if you want the entire .pbix report to be in Portuguese, you can go to File > Options and Settings > Options > Regional Setting > select Portuguese.

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.