Forum Discussion
How to Get Your Question Answered Quickly
Hi Team,
In column A we have actuals, B column is for forecast, C column is the difference between A and B columns
Can I manually edit B column (forecast) in Power BI Matrix table ?
Regards,
Sunil
- MFelix4 years agoSuper User
Hi Georgesunil77 ,
You cannot update values directly on PBI. The values need to be updated on the data source, what you can do is to create a power app that is connected to the data source.
https://docs.microsoft.com/en-us/power-bi/visuals/power-bi-visualization-powerapp
- Georgesunil774 years agoAdvocate II
Thanks aton Miguel !
One more question I had, I am trying to replicate the below formula which I have in excel :
=IF(AR9="No BoM",100%, AV9/AX9)
How do we put an if conditon in Power BI for a TEXT
if AR column contains "No BoM", Then give me 100% or give me the formula AV9/AX9.Regards,
George
- MFelix4 years agoSuper User
Hi Georgesunil77 ,
This depends on how you have the values but this can be something similar to:
Percentage Value = IF(SELECTEDVALUE(Table[Column]) = "No BoM", 1 , Divide(SUM(Table[Column]),SUM( Table[Column]))Then just format has percentage.
- Georgesunil774 years agoAdvocate II
Hi Team,
You might have come across this situation where we would need to depict waterfall graph with Current Year and Prior Year bars on either sides of the graphs.
CY and PY should be of dark blue colour.
All the ups and downs inbetween should be red and green.
Please help me to solve this.
Regards,
George
- MFelix4 years agoSuper User
Check if this helps.
https://community.powerbi.com/t5/Desktop/Waterfall-Chart-current-vs-last-year/td-p/2303021