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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
mizio66
New Member

Scrolling TextVisual add-in

I am trying to use the add-in Scrolling TextVisual.

 

I can create a table in (almost) any way I want starting from a raw dDB with:

- Type

- Date (M and Y)

 

I'd like to have in the scrolling visualization the current number (sum of type occurrency this month) by type and as Deviation the previous month sum, still by Type.

 

I cannot really make it... tried several approach, grouping ,adding columns or measures...

 

Anyone can help?

 

thanks,

 

M

1 ACCEPTED SOLUTION
v-yuezhe-msft
Microsoft Employee
Microsoft Employee

Hi @mizio66,

Based on your description, I make a test using the following sample data.
1.PNG


Firstly, create two columns in the table.

Year = YEAR(Table1[Date])
Month = MONTH(Table1[Date])

Secondly, create a new table using the following DAX.

Table = SUMMARIZE(Table1,Table1[Type],Table1[Year],Table1[Month],"Number",COUNT(Table1[Type]))

Thirdly, create the following measures in the new table.
CurrentMonth = CALCULATE(SUM('Table'[Number]),'Table'[Month]=MONTH(TODAY()))
PreviousMonth = CALCULATE(SUM('Table'[Number]),'Table'[Month]=MONTH(TODAY())-1)
%Change = ([CurrentMonth]-[PreviousMonth])/[PreviousMonth]

At last, create a Scrolling TextVisual.
2.PNG


If above steps don't help, please share sample data of your table and post expected result.

Regards,
Lydia Zhang

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yuezhe-msft
Microsoft Employee
Microsoft Employee

Hi @mizio66,

Based on your description, I make a test using the following sample data.
1.PNG


Firstly, create two columns in the table.

Year = YEAR(Table1[Date])
Month = MONTH(Table1[Date])

Secondly, create a new table using the following DAX.

Table = SUMMARIZE(Table1,Table1[Type],Table1[Year],Table1[Month],"Number",COUNT(Table1[Type]))

Thirdly, create the following measures in the new table.
CurrentMonth = CALCULATE(SUM('Table'[Number]),'Table'[Month]=MONTH(TODAY()))
PreviousMonth = CALCULATE(SUM('Table'[Number]),'Table'[Month]=MONTH(TODAY())-1)
%Change = ([CurrentMonth]-[PreviousMonth])/[PreviousMonth]

At last, create a Scrolling TextVisual.
2.PNG


If above steps don't help, please share sample data of your table and post expected result.

Regards,
Lydia Zhang

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks Lydia, works perfectly.

 

I just had to add the year as a filter (seems like I cannot AND month and year in the measure).

 

kudos!

 

regards,

 

M

mizio66
New Member

I am trying to use the add-in Scrolling TextVisual.

 

I can create a table in (almost) any way I want starting from a raw dDB with:

- Type

- Date (M and Y)

 

I'd like to have in the scrolling visualization the current number (sum of type occurrency this month) by type and as Deviation the previous month sum, still by Type.

 

I cannot really make it... tried several approach, grouping ,adding columns or measures...

 

Anyone can help?

 

thanks,

 

M

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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