Forum Discussion
btfergie
Helper I
5 years agoGrid smoothing DAX
I am trying to figure out a way to come up with a way to take a 2D XY grid of table values and come up with smoothed values by using the neighboring cells. Perhaps this would use some sort of distan...
lbendlin
Super User
5 years agoThat's the easy part ( and why I mentioned the Game Of Life). You maintain two separate surfaces. One for display and one for computation. Once you have computed a new generation you blip it onto the screen.
Of course in Power BI you can't do that, it has no memory. You will need to show the new generation screen (table) next to the old one, and feed it with measures.
I'll play with your sample data to see what I can come up with
btfergie
Helper I
5 years agoYes, I get the idea and I could probably come up with something in Excel. I am trying to figure it out in Power Query.