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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

POWERBI - I want to convert the condition below SQL,

Hello guys!

I want to convert the condition below SQL, to DAX. achieve success using measurement with earlier, but I get slow.

 

WHERE

tab1.cod =2
AND tab1.DATE >='20160101'
AND tab1.DATE <='20190901'
AND tab1.DATEBASE <='20170831'

AND (tab1.DATEBASE1 IS NULL OR tab1.DATEBASE1 >'20170831')

 

Thank you

 

4 REPLIES 4
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

Could you please mark the proper answer as solution or share the solution if it's convenient for you? That will be a big help to the others.

 

Best Regards!
Dale

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

Hi @Anonymous

 

Are your data time columns DATE or NUMBER?

 

Something along these lines might work

 

Table 2 = FILTER('Tab1' , AND (
                            AND (
                                AND (
                                    'Tab1'[Date] >= DATE(2016,1,1), 
                                    'Tab1'[Date] <= DATE(2019,9,1)
                                    )
                                    ,Tab1[DATEBASE] <= DATE(2017,8,31)
                                ),
                                OR(Tab1[DATEBASE1] = BLANK(),Tab1[DATEBASE1] > DATE(2017,8,31))
                                )
                           )
                          

 


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Anonymous
Not applicable

thanks, @Phil_Seamark

 

my data time columns this DATE.

 

Returned no value the example, I liked your example.

I will work a little more in it, I try to return success.

 

thank you again.

Here is a slightly different syntax

 

Table = FILTER('Tab1' , 1 = SWITCH(TRUE() ,
                                   Tab1[COD] = 2 
						&& Tab1[Date] >= DATE(2016,1,1) 
						&& Tab1[Date] <= DATE(2019,1,1)
						&& Tab1[DATEBASE] <= DATE(2017,8,31)
						&& (		Tab1[DATEBASE1] = BLANK() 
								-- OR --
								|| Tab1[DATEBASE1] > DATE(2017,8,31)
							),
						-- THEN -- 
                                    1 ,
						-- ELSE --
                                    0
                                    )
						)

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors