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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

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 community update carousel

Fabric Community Update - June 2025

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

Top Solution Authors