Hi all,
I'm new in power apps, and I'm bulding a commentary app for power bi report.
I want to do a sum using a power bi filter. When you select a country, I want it to sum only the comment IDs that appear from the selected country. But it returns a incorrect total value.
I'm using this code:
Sum(
Filter(
Opportunities;
//IdLabel.Text = ID
//ID = Value(idvalue
Country in PowerBIIntegration.Data.Country
);
VolumeLabel
)
and I get this:

Thanks