Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Demlet
Contributor III
Contributor III

What am I doing wrong?

 
1 Solution

Accepted Solutions
ogster1974
Partner - Master II
Partner - Master II

What I would suggest is to troubleshoot your formula create a simple table and add three measures, your est and act fields plus your equation then your dimension data should be what you are grouping on.   this will give you visibility of where in your data you have issue.

View solution in original post

2 Replies
ogster1974
Partner - Master II
Partner - Master II

What I would suggest is to troubleshoot your formula create a simple table and add three measures, your est and act fields plus your equation then your dimension data should be what you are grouping on.   this will give you visibility of where in your data you have issue.

marcus_sommer

If you want to calculate with the day-number you will need to grab this number and not formatting a date or even a timestamp to the visual day because the real value of it will be remain a date or a timestamp. This meant you will probably need something like this:

= (day([Act_TimetoComplete])-day([Est_TimetoComplete])) / day([Act_TimetoComplete])

- Marcus