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
Anonymous
Not applicable

Compare hour from different table

Hi all

I have a column Dim Hours, that contains 24 hours .

table a

vjcaldeira_1-1610049630145.png

and I have other column in other table that contains some hours for exemplo 

table b
12:00:00
12:30:00
17:00:00

I would like to compare this date for exemplo
IF( tableA.hour >= tableB.hour,1,0)

The problem is that the table A there are a lot line and Table B they are 10 line for exemplo, so i need compare.


Thanks a lot


2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , do these tables has any thing in common.

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

 

You can actually create a new column in the required table. and then use that for you calculations.

Example in video - https://www.youtube.com/watch?v=czNHt7UXIe8

Anonymous
Not applicable

Thanks a lot,
with this cod I could solve my problem, make  a looping comparind the datas from the tables

Hora Cor Parada =

var selecthora = SELECTEDVALUE(E_DIM_HORA[HORA])
var result =
CALCULATE(
SELECTEDVALUE(Fato[HoraInicio]),
FILTER(Fato,
selecthora >= (Fato[HoraInicio])&&
selecthora <= Fato[HoraFim] ),Fato[MOVIMENTO] = "2")
return
If(result,1,0)

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.

Top Solution Authors