Trend changing Inputs

Hi All,

Looking for some help, I need to provide insurance mix of patients that i saw in last two years and how is the trend changing

Insurance Companies Patient ID Appointment Date
Insurance 1 88542 23-Feb-10
Insurance 2 76442 24-Mar-11
Insurance 2 76442 24-Mar-12
Insurance 3 76453 25-Apr-13
Insurance 6 76514 22-Apr-20
Insurance 7 76544 15-Sep-20
Insurance 5 76542 11-Oct-14
Insurance 3 76453 12-Dec-14
Insurance 6 76514 22-Sep-10
Insurance 7 76544 13-Sep-20
Insurance 5 76542 11-Sep-20
Insurance 4 76575 13-Mar-20

@Nagi_k,

I’m not sure how you want to visualize this, but I think one effective way is to use a matrix visual with some conditional formatting to color in the blank areas:

image

CF Background = 

VAR Result=
CALCULATE(
    MAX( Data[Insurance Short Name] ),
    FILTER(
        Data,
        Data[Patient ID] =  SELECTEDVALUE( Data[Patient ID] ) &&
        Data[Appt Year] = RELATED( Dates[Year] )
    )
)

RETURN
IF( Result = BLANK(), 0, Result)

I hope this is helpful. Full solution file attached below.

1 Like

Thanks @BrianJ , but what if we need to show information related mix of insurance patients for last 2 years and trend

Could you please help me here 1234.pbix (1.2 MB)

Here is my PBIX file for your reference.

Regards
Nag

@Nagi_k,

I’m happy to help you here, but at this point to productively move forward what I need is a mockup of the outcome you are trying to achieve. That can be in the form of Excel, PowerPoint or even a hand-drawn sketch. Just something to give me an idea of what you want the report/visual to look like.

Thanks.

  • Brian

Hi @Nagi_k, we’ve noticed that no response has been received from you since the 7th of October. We just want to check if you still need further help with this post? In case there won’t be any activity on it in the next few days, we’ll be tagging this post as Solved. If you have a follow question or concern related to this topic, please remove the Solution tag first by clicking the three dots beside Reply and then untick the checkbox. Thanks!