The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hello Every one
I need to take the min hour in some colums, but some of them are null, so when i use the min expression takes the null value as the min, so i need to evaluate only the rows wich are not blank.
My calculated column is
Min =MIN(MIN(BLOQ[Bloq_Entrega];BLOQ[Bloq_credito]);BLOQ[Bloq_comer])
but my result is still blank, even I I have two colums with data
Please I need your Help!
Solved! Go to Solution.
@Anonymous
USe this Calc column
Min = VAR temp = { [Bloq_Entrega], [Bloq_credito], [Bloq_comer] } RETURN MINX ( FILTER ( temp, [Value] <> BLANK () ), [Value] )
@Anonymous
USe this Calc column
Min = VAR temp = { [Bloq_Entrega], [Bloq_credito], [Bloq_comer] } RETURN MINX ( FILTER ( temp, [Value] <> BLANK () ), [Value] )
User | Count |
---|---|
56 | |
54 | |
54 | |
49 | |
30 |
User | Count |
---|---|
173 | |
89 | |
70 | |
46 | |
45 |