SOLVED
Nested POW functions
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
dsouthh
7 - Meteor
04-20-2017
12:19 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Is there no way to nest a POW function within another POW function? For example, I am getting the error "Wrong number of parameters for the function 'POW'" with the following code:
1/POW(POW([Field1]/[Row-1:Field1],4)+.004),0.25)
Solved! Go to Solution.
Labels:
- Labels:
- Common Use Cases
- Preparation
1 REPLY 1
JohnJPS
15 - Aurora
04-20-2017
12:22 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I think it just has an extra closing parenthesis... try:
1/POW(POW([Field1]/[Row-1:Field1],4)+.004,0.25)
