Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
kalpanaV
Helper IV
Helper IV

Need Help

Capture.PNG

In this, i want the change in team in repsective month 

in which month he has changed team and want the count how many has changed,.

1 ACCEPTED SOLUTION

Hi @kalpanaV,

 

Please modify the calculated column 'list' to below:

List = CALCULATE(CONCATENATEX(VALUES(Sheet7[Team Name]),[Team Name],","),FILTER(ALL(Sheet7),Sheet7[Employee_id]=EARLIER(Sheet7[Employee_id])))

8.PNG

 

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

5 REPLIES 5
v-shex-msft
Community Support
Community Support

Hi @kalpanaV,

 

You can try to use below formula if it suitable for your requirement.

1. Add date column as index to table.

Date = DATEVALUE([Month]&" "&1)

 

2. Add calculated column to calculate the last changed month.

LastChange = 
var previous_Date=MAXX(FILTER(Sheet7,[Date]<EARLIER(Sheet7[Date])&&[Employee_id]=EARLIER(Sheet7[Employee_id])),[Date])
Return
IF(previous_Date<>BLANK()&&[Team Name]<>LOOKUPVALUE(Sheet7[Team Name],Sheet7[Employee_id],[Employee_id],Sheet7[Date],previous_Date),[Month],BLANK())

 

6.PNG

 

3. Write measurs to calculate the change count.

Change Count = CALCULATE(COUNT(Sheet7[LastChange]),Sheet7[LastChange]<>BLANK()) 

7.PNG

 

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

I tried it, it s giving wrong values.

Else, can we get  like this

 

 

100 -Monitoring, Networking, Montioring

101-  Montioring.DBA, Monitoring

 

Just i want to list it i table. is this possible/.?

Hi @kalpanaV,

 

>>I tried it, it s giving wrong values.

Can you provide the detailed error message?

 

>>Just i want to list it i table. is this possible/.?

Yes, it is possible. You can create a calculate column with below formula:

List = CONCATENATEX(FILTER(ALL(Sheet7),Sheet7[Employee_id]=EARLIER(Sheet7[Employee_id])),[Team Name],",")

8.PNG

 

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

small change, it should not come like this - Monitoring, monitoring,Networking. 

 

it will be good, if it comes like this - Monitoring,networking.

Hi @kalpanaV,

 

Please modify the calculated column 'list' to below:

List = CALCULATE(CONCATENATEX(VALUES(Sheet7[Team Name]),[Team Name],","),FILTER(ALL(Sheet7),Sheet7[Employee_id]=EARLIER(Sheet7[Employee_id])))

8.PNG

 

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.