The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hola a todos , quisiera su ayuda para resolver el siguiente problema.
Necesito transformar esta tabla en power query
a esto
Desde ya muchas gracias a todos por su ayuda!!
Solved! Go to Solution.
Hi @fav_ccc2021 ,
You can try the following operations:
1. In Power Query -- Select [Actividad] -- Pivot Column
2. Select all columns of the entire table -- Replace Values
3. Result:
Best regards,
Hi @fav_ccc2021 ,
You can try the following operations:
Create a calculated column:
total no null =
var _a=IF([A]=BLANK(),1,0)
var _b=IF([B]=BLANK(),1,0)
var _c=IF([C]=BLANK(),1,0)
var _d=IF([D]=BLANK(),1,0)
RETURN
_a + _b + _c + _d
Result:
Best regards,
esta perfecto!! solo lo ultimo, si quiero agregar una columna contando las filas no null ejemplo
gracias por la ayuda!!
Hi @fav_ccc2021 ,
You can try the following operations:
Create a calculated column:
total no null =
var _a=IF([A]=BLANK(),1,0)
var _b=IF([B]=BLANK(),1,0)
var _c=IF([C]=BLANK(),1,0)
var _d=IF([D]=BLANK(),1,0)
RETURN
_a + _b + _c + _d
Result:
Best regards,
Hi @fav_ccc2021 ,
You can try the following operations:
1. In Power Query -- Select [Actividad] -- Pivot Column
2. Select all columns of the entire table -- Replace Values
3. Result:
Best regards,
User | Count |
---|---|
28 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
33 | |
13 | |
12 | |
9 | |
7 |