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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
WM117
Frequent Visitor

DataSource.Error: Microsoft SQL: Must declare the scalar variable

Hi everybody,

 

I get this error message in PowerQuery "DataSource.Error: Microsoft SQL: Must declare the scalar variable @Jaar" In these lines of code. The issue seems to be Year(start)=@jaar.

 

Does anybody know how to solve this? 

 

SELECT 
	 Academy
	 ,Soort
	 ,EvenementID
	,Start
	,Omzet
	,AantalDagen
	,Trainer
	,PercentageMarketingKosten/100 * Omzet as Marketingkosten
	,LocatieBerekend
	,Locatie
	,CommissieVergoeding
	,Commissie

	,Omzet
		- PercentageMarketingKosten/100 * Omzet 
		- Trainer
		- Locatie
		- Commissie

	as Brutomarge

	,Overig
	
		
FROM tl.v_Projectadministratie
WHERE OmzetLaptops=0
and Year(start)=@Jaar
and Trainer<>0
AND Start<= GETDATE()-30
ORDER BY Start DESC

  

1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

Exactly as the error message says - you need to provide the value of that variable, or replace it with a static value.

View solution in original post

1 REPLY 1
Syndicate_Admin
Administrator
Administrator

Exactly as the error message says - you need to provide the value of that variable, or replace it with a static value.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors