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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
alexrf86
Helper III
Helper III

DAX comparison operations do not support comparing values of type True/False with values of type Int

Hello.
 
May anyone help me to sort out "DAX comparison operations do not support comparing values of type True/False with values of type Integer. Consider using the VALUE or FORMAT function to convert one of the values." error?
 
I created the following column to show the current month and the last month on blank:
 
current_last_month_blank = IF(OR(
VALUE(CONCATENATE(YEAR(MAX(Calendario_pedido[Order_day]));
                                       FORMAT(MONTH(MAX(Calendario_pedido[Order_day])); "00")));
VALUE(MAXX( Calendario_pedido;CONCATENATE(YEAR(DATEADD(Calendario_pedido[Order_day];-1;MONTH));
                                       FORMAT(MONTH(DATEADD(Calendario_pedido[Order_day];-1;MONTH));"00")))))
                                            = Calendario_pedido[year_month_order];
                                           BLANK();
                                          Calendario_pedido[year_month_order])
 
 
 
Thanks
1 ACCEPTED SOLUTION
ibarrau
Super User
Super User

Hi there. The thin is you have to ask twice in the OR statement and not at the end. It need from you to return a true false on each argument of the function. Check this correction out:

IF(
	OR(
		VALUE(CONCATENATE(YEAR(MAX(Calendario_pedido[Order_day]));
			FORMAT(MONTH(MAX(Calendario_pedido[Order_day])); "00"))) = Calendario_pedido[year_month_order];
		VALUE(MAXX( Calendario_pedido;CONCATENATE(YEAR(DATEADD(Calendario_pedido[Order_day];-1;MONTH));
			FORMAT(MONTH(DATEADD(Calendario_pedido[Order_day];-1;MONTH));"00"))))= Calendario_pedido[year_month_order]
	)
	; BLANK()
	; Calendario_pedido[year_month_order]
)

There you have two times the condition.

 

Hope this works

Regards


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Happy to help!

LaDataWeb Blog

View solution in original post

2 REPLIES 2
ibarrau
Super User
Super User

Hi there. The thin is you have to ask twice in the OR statement and not at the end. It need from you to return a true false on each argument of the function. Check this correction out:

IF(
	OR(
		VALUE(CONCATENATE(YEAR(MAX(Calendario_pedido[Order_day]));
			FORMAT(MONTH(MAX(Calendario_pedido[Order_day])); "00"))) = Calendario_pedido[year_month_order];
		VALUE(MAXX( Calendario_pedido;CONCATENATE(YEAR(DATEADD(Calendario_pedido[Order_day];-1;MONTH));
			FORMAT(MONTH(DATEADD(Calendario_pedido[Order_day];-1;MONTH));"00"))))= Calendario_pedido[year_month_order]
	)
	; BLANK()
	; Calendario_pedido[year_month_order]
)

There you have two times the condition.

 

Hope this works

Regards


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Happy to help!

LaDataWeb Blog

Thanks buddy, you are right!

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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