Hi @mickeydjw, we aim to consistently improve the topics being posted on the forum to help you in getting a strong solution faster. While waiting for a response, here are some tips so you can get the most out of the forum and other Enterprise DNA resources.
Use the forum search to discover if your query has been asked before by another member.
When posting a topic with formula make sure that it is correctly formatted to preformated text </>.
Use the proper category that best describes your topic
Provide as much context to a question as possible.
Include demo pbix file, images of the entire scenario you are dealing with, screenshot of the data model, details of how you want to visualize a result, and any other supporting links and details.
I’ll see if I can find some sample data that is close enough. Can’t share the data or the .pbix, which is why I tried to give as much detail as I could.
One of my coworkers reminded me of a solution to the problem that I helped them solve previously. Because my formula functioned properly for reporting the SSAT, but the formula caused a value without cases, I wrapped the measure into an IF statement. MonthlySSAT = IF(SSAT <> 100, SSAT). This removed any values that were reported as 100, and the visual worked properly.
Is the following measure working properly as you are comparing Dates[Date] which is in Date Format to SourceData’[createdatetime] which is in Date/Time Format.
Didn’t change it. I think the underlying issue is that even if there are no results in that month, the calculation still gives a value of 100 which is causing the headaches.
@mickeydjw
I believe the solution is not that difficult but unable to solve it as don’t have access to the data. Here is the video showing how you can mask sensitive data and then probably you can share the pbix file.
Thanks, this video is great info for the future and I’ll use it if I have something else to solve. Since I was able to work around my issue with an IF() statement, I’m moving on to other problems. Thank you for your help.