Search the web
Sign In
New User? Sign Up
briousers · Brio Users - Help with deploying Brio Enterprise
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 15142 - 15176 of 15823   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15142
hi I need to open a brioquery document located in the Ondemand Servr 6.6 Thru open url(), plus, when de document it's open, Ineed to encript the url regards ...
Cristián
c_brio2000
Offline Send Email
Jul 5, 2006
7:33 pm
15143
hello! I am a new member of Briouser group! I am currently developping a datawarehouse over Hyperion System 9I+ Interactive Reporting studio. I am writing you...
dampy
Offline Send Email
Jul 6, 2006
12:06 pm
15144
Hello, In Hyperion Intelligence Designer in the query tab menu, go to 'Data Model'/'Data Model Options'/'Auditing' and click the 'define button for the 'Pre...
andre_duijn
Offline
Jul 6, 2006
8:29 pm
15145
I am trying to add the following excel formula into a workbook using a brio joole script: =IF(ISERROR(F14/G14=TRUE),"",F14/G14) I can add the formula F14/G14...
bty18336431
Offline Send Email
Jul 8, 2006
6:45 am
15146
I am trying to use the offset function in excel to move 2 cells to the right but am having problems I need to go to the bottom of a column, so I pick one 2 to...
bty18336431
Offline Send Email
Jul 8, 2006
7:35 am
15147
I think you just have a parenthesis in the wrong place. Try this ... IF( ISERROR( F14 / G14 ) = TRUE, "", F14 / G14) ... From: briousers@yahoogroups.com...
Kyle
fabrikyl
Offline Send Email
Jul 9, 2006
4:40 pm
15148
Kyle - thanks for trying to help, however I think I maybe didnt make my first statement clear enough... The full line of code I am trying to use is: ...
Paul Sutherby
bty18336431
Offline Send Email
Jul 10, 2006
9:14 pm
15149
Kyle - thanks for trying to help, however I think I maybe didnt make my first statement clear enough... The full line of code I am trying to use is: ...
bty18336431
Offline Send Email
Jul 11, 2006
1:40 am
15150
Your speech marks " are confusing the script editor as you've got them inside your formula as well as enclosing it. objCurrentSheet.Range("H14").Formula =...
steve_hearne@...
stevebrio
Offline Send Email
Jul 11, 2006
8:38 am
15151
The problem is you are using a double quote all the way through your expression and Javascript does not like it. Excel wants the double quotes. Try this: ...
jwyman52
Offline Send Email
Jul 11, 2006
2:21 pm
15152
Hi..all I am also have same problem when using JOOLE to replace.. objCurrentSheet.Range("H14").Cells.Replace ".", "," then i get a brio error saying that I...
faridin f
faridin_f
Offline Send Email
Jul 12, 2006
5:24 am
15153
jwyman / Steve, Many thanks - this works great! Now all I need to do is get my ofset issue sorted and I will be ok. Thanks again Paul ... your ... ...
bty18336431
Offline Send Email
Jul 12, 2006
10:21 am
15154
Sorry to bump - but can anyone help with this? Am trying to get excel to select the cell 2 to the right of the current selection - I would expect the below...
bty18336431
Offline Send Email
Jul 12, 2006
10:22 am
15156
i am getting a problem trying to use Brio to select a range from my end cell to H15 on a workbook. I have got the code to make the active cell the last one in...
bty18336431
Offline Send Email
Jul 16, 2006
8:27 am
15157
I'm Using Brio Intelligence 6.6.4 This is what i'm trying 1) Depending on the values of list boxes on EIS page i'm generating customized query (call it Query5)...
Harshad_OCP
harshad_exam...
Offline Send Email
Jul 17, 2006
9:12 pm
15158
In javascript you are not in a scope where Selection is valid like it is in the Excel macro. In the same sense, Range is not valid so you need objCurrentSheet ...
Kevin Sigl
kevinsigl
Offline Send Email
Jul 18, 2006
3:36 am
15160
Hi, I need to take 2 numbers and a string and concatenate them into one field and export that to text file (tab). PO Field = 'AR-00231' Field 1 = 28 Field 2 =...
googlepost123
Offline
Jul 18, 2006
7:52 pm
15161
Hi Dan, For the first number field, just use ToChar on it first (under Functions/Date Functions) and then use a combination of Substr and ...
andre_duijn
Offline
Jul 18, 2006
10:41 pm
15162
Don't worry about the bad formatting in the custom sql window, the sql it shows is not what it actually runs. To see the "real" sql, turn on the query log and...
Steve Cavill
stevecavill
Offline Send Email
Jul 19, 2006
1:59 am
15163
Hi Steve, The result set is not generated, if I try to process the quqry an error saying "SQL not properly ended" pops. I can't use the regular approach of EIS...
Harshad_OCP
harshad_exam...
Offline Send Email
Jul 19, 2006
9:44 pm
15164
Hi, Field 2 has to padded with zeros to 6 places so for example 000007 and 004567. I can't do this with concatenation because there is no pad function to use....
googlepost123
Offline
Jul 20, 2006
3:06 pm
15165
Hi Dan, For your first numeric field create a computed item: Substr('000000' + ToChar ( <NumField1>, "0" ),Length (ToChar ( <NumField1>, "0" ))+1,6 ) and set...
andre_duijn
Offline
Jul 20, 2006
9:17 pm
15168
Could anybody please guide me in this. I want to call a Java Class from the login screen of Brio. (newlogon.changepwd1.html) Here is my applet code added to...
SBP
hello_tiny
Offline Send Email
Jul 23, 2006
9:17 pm
15169
Good afternoon all! I will first apologize, as I have checked for any posting of rules for posts for this message forum and did not find them. I am seeking...
gsagason
Offline Send Email
Jul 24, 2006
6:35 pm
15170
Hey Andre, NumField1 works like a charm, but NumField2 is truncating the 2 decimal places... :-( Thanks! Dan...
googlepost123
Offline
Jul 24, 2006
7:55 pm
15171
Oh ... uhm... Try this: Substr('000000' + ToChar ( Round ( <NumField2>, 2 ) *100, "0" ),Length (ToChar ( Round ( <NumField2>, 2 ) *100, "0" ) +1),6 ) André ...
andre_duijn
Offline
Jul 24, 2006
8:20 pm
15172
That is exactly what I tried after understanding the functions. Everything is working now. Thanks a bunch for the help! Dan...
googlepost123
Offline
Jul 24, 2006
8:57 pm
15173
any way to edit imported sql with out having to import again?? Save me a boatload of time if anyone knows how...thanks!!! tim...
iyaclark
Offline
Jul 25, 2006
7:59 pm
15174
Hello, I've been reading thru this group trying to find a solution to the ODS 1010 error. I've got about 20 users using the Brio Insight plugin. About a...
tech_jd
Offline
Jul 26, 2006
9:27 pm
15176
Hello, In preparation for our upgrade from version 6.6.4 to 8.5 or higher, we need to get 'migrate' our stuff to 8.2.1 We have a server running 'Windows 2003...
andre_duijn
Offline
Jul 30, 2006
11:46 pm
Messages 15142 - 15176 of 15823   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help