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
Kid_Koala
Frequent Visitor

How to multiply visitors by month to seasonality

Hi guys, need your help with adjusting a seasonality weight to visitors chart.

I've got two tables: the first one with the number of visitors to my web site by date (dd/mm/yy). The second one contains seasonality weight by month.

I need to multiply seasonality data to my visitors data mounth by month, but have no idea how to do this. I'm sure it's an easy move, but I really stuck with that. 

Thanks. 

1 ACCEPTED SOLUTION
fhill
Resident Rockstar
Resident Rockstar

Like many things in PowerBi there are several ways to acomplish this; here's one suggestion...

 

I created two custom columns in your Visitors table for Adj_Lookup (Lookup the Adjustment Value based on 'Start of Month' matching' and Adj.Visitors where I just multiple the adjustment by original visitors count.

 

Adj_Lookup = LOOKUPVALUE(tblAdj[Adj.],tblAdj[Month],STARTOFMONTH(tblVisitors[Date]))

Adj.Visitors = tblVisitors[Visitors] * tblVisitors[Adj_Lookup]

 

Then just create a summary table of Visitors and Adj.Visitors.

FOrrest

 

Capture.PNGCapture2.PNG




Did I answer your question, or help you along the way?
Please give Kudos or Mark as a Solution!


https://www.linkedin.com/in/forrest-hill-04480730/

Proud to give back to the community!
Thank You!




View solution in original post

3 REPLIES 3
v-yulgu-msft
Employee
Employee

Hi @Kid_Koala,

 

Suppose the source tables look like:

1.PNG2.PNG

 

Please create a calculated table using below DAX formula:

summarize visitor table =
ADDCOLUMNS (
    SUMMARIZE (
        'Visitor table',
        'Visitor table'[Date].[MonthNo],
        "visitor number", SUM ( 'Visitor table'[visitors] )
    ),
    "multiply result", [visitor number] * LOOKUPVALUE('Seasonality table'[Weight],'Seasonality table'[Month],[Date].[MonthNo])
)

3.PNG

 

Best regards,
Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
fhill
Resident Rockstar
Resident Rockstar

Like many things in PowerBi there are several ways to acomplish this; here's one suggestion...

 

I created two custom columns in your Visitors table for Adj_Lookup (Lookup the Adjustment Value based on 'Start of Month' matching' and Adj.Visitors where I just multiple the adjustment by original visitors count.

 

Adj_Lookup = LOOKUPVALUE(tblAdj[Adj.],tblAdj[Month],STARTOFMONTH(tblVisitors[Date]))

Adj.Visitors = tblVisitors[Visitors] * tblVisitors[Adj_Lookup]

 

Then just create a summary table of Visitors and Adj.Visitors.

FOrrest

 

Capture.PNGCapture2.PNG




Did I answer your question, or help you along the way?
Please give Kudos or Mark as a Solution!


https://www.linkedin.com/in/forrest-hill-04480730/

Proud to give back to the community!
Thank You!




It works! Thanks a lot, Fhill!Smiley Very Happy

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.

Top Solution Authors