Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
TPC82
New Member

Power BI table criation with multi-filter format

Hello,

I have generated the table below by extracting columns from a main table using the 'selectcolumns' function, applying an initial filter based on a 'date' column. However, in addition to this filter, I would like to further refine the table by selecting the '"Estado", BASE[Estado (Proposta)] column with two specific data types: "Em Elaboração" and "Aguarda GO/NOGO." Additionally, I want to sort the table in ascending order based on the 'BASE'[FALTA(número de dias)] column (from smaller to larger).

 

Captura de ecrã 2023-11-10 103033.png

 

The DAX applied:

 

Propostas a Enviar =
SELECTCOLUMNS(FILTER(BASE,'BASE'[DATA PREVISTA DE ENTREGA].[Date] >= TODAY() && 'BASE'[DATA PREVISTA DE ENTREGA].[Date] < TODAY() + 8),
"Oportunidade", BASE[OPORTUNIDADE],
"Data Criação", FORMAT(BASE[Criada Em], "dd-MM-yyyy"),
"Cliente", BASE[Nome único de cliente],
"Descrição", BASE[Descrição única do projeto],"Tipo", BASE[Tipo Concurso],
"Setor", BASE[Setor Único Atividade ],
"Valor", FORMAT(DIVIDE(BASE[VALOR BASE OU ESTIMADO], 1000), "0.0K"),
"Data Entrega", FORMAT(BASE[DATA PREVISTA DE ENTREGA], "dd-MM-yyyy"),
"Hora", BASE[HORA PREVISTA DE ENTREGA],
"Prazo", BASE[FALTA(número de dias)],
"Estado", BASE[Estado (Proposta)],
"Responsável", BASE[Responsável pela Proposta],
"Orçamentista", BASE[Responsável pelo Orçamento]
)
 
Someone can help me to sort it out?
Many Thanks
T

 

1 REPLY 1
TPC82
New Member

Any help, please?

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.