Forum Discussion
How to Get Your Question Answered Quickly
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
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
Thanks alot Miguel !
This worked for me... Thanks for introducing me to "SELECTEDVALUE".Really Appreciate your Support !
Regards,
George