Forum Discussion
Showing current and future months
- 6 years ago
Hi Anonymous ,
Has your problem been solved? If not, please show us a sample data.
Best regards,
Lionel ChenIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous,
You could do it by creating a calculated column to determine if each date matches the condition you are looking for.
Check column =
IF( Calendar[Date]>=TODAY();1;
IF( Calendar[Year]=YEAR(TODAY()) && Calendar[Month]=MONTH(TODAY()) ;1;
0))
Br,
J
Thanks for the quick response, definately not my area of expertise on that.
So i can definately create the calculated column i gather i then use that as the axis or do i use it as a filter on the visual, that is the part i am not sure on.
Ta
- tex6286 years ago
Community Champion
You will need to use it as a filter! If you want you can modify the column slightly to return dates instead of 1's and 0's which would allow you to use it as the axis dimension.
But right now all you need to do is apply it as a filter 🙂
Br,J