The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi All,
Hope someone can give me guidance on this Power BI problem I'm having. I need to be keep track of all increases and decreases in account support each month. Part of this is being able to see if a value appears in the succeeding month.
I have a table that looks like below:
Activity Month | Employee ID | Client Name | EIDClientName | Employee Count | In Succeeding Month? |
Jul-21 | John Doe | ABC | John DoeABC | 1 | No |
Sep-21 | John Doe | ABC | John DoeABC | 1 | Yes |
Oct-21 | John Doe | ABC | John DoeABC | 1 | No |
Jul-21 | John Doe | XYZ | John DoeXYZ | 1 | Yes |
Aug-21 | John Doe | XYZ | John DoeXYZ | 1 | Yes |
Sep-21 | John Doe | XYZ | John DoeXYZ | 1 | Yes |
Oct-21 | John Doe | XYZ | John DoeXYZ | 1 | Yes |
Nov-21 | John Doe | XYZ | John DoeXYZ | 1 | N/A |
Is there a DAX function that will allow me to get the results similar to the 'In Succeeding Month?' column?
N/A in November is because the latest report date is Nov-2021 so there is no future month to refer to.
Thanks,
E
Solved! Go to Solution.
Hi @Anonymous ,
Please find the below solution,
// Calculated column
Please like and mark my Post as a solution if it meets your expectation. Thank you.
I'm relatively new to Power BI and this problem has been racking my brain for the past few days. So your formula is such an immense help to me. Thank you!!!
Hi @Anonymous ,
Please find the below solution,
// Calculated column
Please like and mark my Post as a solution if it meets your expectation. Thank you.