Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi comunity,
How do I rewrite the following formula created on Data view in power query ?
Solved! Go to Solution.
Hi, Please use the below code in custom column:
Nº de CM por RO =
let
consultaDeMercado = [Consulta de mercado],
estadosUniques = Table.SelectRows(Estados_Uniques, each [Consulta de mercado] = consultaDeMercado),
count = Table.RowCount(estadosUniques)
in
count
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
Hi, Please use the below code in custom column:
Nº de CM por RO =
let
consultaDeMercado = [Consulta de mercado],
estadosUniques = Table.SelectRows(Estados_Uniques, each [Consulta de mercado] = consultaDeMercado),
count = Table.RowCount(estadosUniques)
in
count
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
@Domingos I don't know its helps you or not but you can Try group by in power query.THANK YOU!!