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
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
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.