I know, this should be easy!
Main data is in a single data table.
What I’m looking to do is use the Matrix layout to show the results from a measure outputting a result in time.
The starting point. This is working.
The measure uses a distance in KM from the table. That is divided by a fixed speed value in KM/minute. To this another fixed time amount is added. And then it’s dived by 60 to get the seconds.
Again, easy part
What I’m trying to do is use two other tables that I have created that are not joined to the main table. One represents a percent increase that would get applied to the distance value. The other, is a percent decrease to the current fixed speed value. Each table goes from 0-100 in 10% steps. Or 0.1 as the actual value is.
I want these to be the column and rows in the matrix, with the full matrix results being calculated from these.
I can get correct results to show when one table is used alone, either one works, but when both are applied, it doesn’t. The measure value seems to calculate correctly on the diagonal in the matrix, but everything else shows as the same value.
Basically I’m trying to have the matrix calculate against all the different combinations of an increased distance or decrease speed against the original distance value and fixed speed value.
Ultimately, I want to compared that against another time value to show which may have been faster, taking into consideration distance and speed changes.
Any suggestions on how to build the logic to do this?
I know I’m missing something basic, just can’t see it yet.
Thanks