Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Dear All,
I'm trying to create a custom column as follows:
Thank you a lot, error is gone!
Problem is: it doesn't work the following in red:
Hi @gianmarco ,
Please try code as below.
Column =
VAR SUPPLIERS =
CALCULATE (
SUM ( Cashflow[Importo (+/-)] ),
FILTER ( Cashflow, Cashflow[Source] = 0 && Cashflow[Categoria] = "FORNITORI" )
)
VAR PREVISIONE_FORNITORI_CURRENT = Cashflow[Source] = 5
&& Cashflow[Completed_month] = 0
&& Cashflow[Par1] = 1
VAR CLIENTS =
CALCULATE (
SUM ( Cashflow[Importo (+/-)] ),
FILTER ( Cashflow, Cashflow[Source] = 0 && Cashflow[Categoria] = "CLIENTI" )
)
VAR PREVISIONE_CLIENTI_CURRENT = Cashflow[Source] = 5
&& Cashflow[Completed_month] = 0
&& Cashflow[Par1] = 0
VAR PREVISIONALE_PAST = Cashflow[Source] = 5
&& Cashflow[Completed_month] = 1
RETURN
IF (
PREVISIONALE_PAST,
0,
IF (
PREVISIONE_FORNITORI_CURRENT,
Cashflow[Importo (+/-)] - ( SUPPLIERS ),
IF (
PREVISIONE_CLIENTI_CURRENT,
Cashflow[Importo (+/-)] - ( CLIENTS ),
Cashflow[Importo (+/-)]
)
)
)
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
It seems not working properly. Again, it doesn't subtract anything 😞
This pattern is likely the issue. I see it in two places. Also, are you sure you want to create a column for this? Which table are you putting it on? A measure may be better.
VALUES ( Cashflow[Categoria] ) = "FORNITORI"
Try just
Cashflow[Categoria] = "FORNITORI"
Pat
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
58 | |
55 | |
55 | |
37 | |
30 |
User | Count |
---|---|
78 | |
64 | |
45 | |
43 | |
40 |