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
luciano1903
Frequent Visitor

MEDIDA DAX RETORNANDO COM VALORES DIVERGENTES

boa tarde

 

Pessoal criei uma coluna no PBI, nela ela calcula o tempo entre datas desconsiderando sábado e domingo, porém em algumas linhas ele retorna com o valor de 48 horas, não consegui identificar, onde está o erro. Exemplo: data de input 16/10/2023 e envio federação 17/10/2023, deveria retornar 24, porém o resultado é 48.

Agradeço pela ajuda.

luciano1903_0-1707245771163.png

 

2 ACCEPTED SOLUTIONS
lbendlin
Super User
Super User

The WEEKDAY(...,2) for these dates is 1 and 2.

View solution in original post

Anonymous
Not applicable

Hi @luciano1903 ,

For Ibendlin's answer I think it's correct, in your DAX code, WEEKDAY([Date],2)<6,24 is counting by days, that is why it returns 48 only in 16/10/2023-17/10/2023.

If you want to change all the results to 24 that's fine too.

 

Column = 
VAR _A = SUMX(FILTER(CALENDAR('Table'[Data Input],'Table'[Data Output]),WEEKDAY([Date],2)<6),24)
VAR _AA = IF(_A = 48,24,_A)
RETURN _AA

 

vyilongmsft_0-1707272696222.png

 

 

Best Regards

Yilong Zhou

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

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @luciano1903 ,

For Ibendlin's answer I think it's correct, in your DAX code, WEEKDAY([Date],2)<6,24 is counting by days, that is why it returns 48 only in 16/10/2023-17/10/2023.

If you want to change all the results to 24 that's fine too.

 

Column = 
VAR _A = SUMX(FILTER(CALENDAR('Table'[Data Input],'Table'[Data Output]),WEEKDAY([Date],2)<6),24)
VAR _AA = IF(_A = 48,24,_A)
RETURN _AA

 

vyilongmsft_0-1707272696222.png

 

 

Best Regards

Yilong Zhou

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

lbendlin
Super User
Super User

The WEEKDAY(...,2) for these dates is 1 and 2.

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.