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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 14019 - 14050 of 15823   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14019
If I have a saved layout using the HTML wizard, how can I incorporate that into the Broadcast Server? If I use the Export to HTML section in the Broadcast...
dymaff1
Offline Send Email
May 3, 2005
11:57 am
14020
Hi Rob, It is good news to me. I'm connecting to MS SQL 7.0 database. If you need more information please let me know. Thanks, Sarah ... wanting to ... On ... ...
sarah_guo
Offline Send Email
May 3, 2005
1:17 pm
14021
HI all, I have a dashboard (using Hp designer and Hyperion performance server 8.2) with a number of pivots. My data is on sql server, which i refresh everyday...
Barry
mcfsym
Offline Send Email
May 3, 2005
3:25 pm
14022
I've created 2 separate queries from my .oce connection and would like to append (or union) the both of the table results. I've set the results so that each...
henryrocks415
Offline Send Email
May 4, 2005
12:13 am
14023
Henry, Adam has an excellent example on his web site at http://www.adamfranz.com. hth ... From: briousers@yahoogroups.com [mailto:briousers@yahoogroups.com]...
Terri Williams
terriwilliams7
Offline Send Email
May 4, 2005
1:54 am
14024
Ok, here goes. Create an odbc connection to your sql server don't bother selecting a default database. Create a new OCE connection select ODBC connection...
RugbyFan
rob_rugbyfan
Offline Send Email
May 4, 2005
11:01 am
14025
Hi Rob, That is wonderful. It works great. Thanks so much for your help. Sarah ... selecting a ... SQL ... Enter your ... above. ... names ... ...
sarah_guo
Offline Send Email
May 4, 2005
1:18 pm
14026
Try this. for (var i = 1; i <= ActiveDocument.Sections.Count; i++) { if (ActiveDocument.Sections[i].Type == bqQuery) { ...
jarrodb74
Offline
May 4, 2005
1:50 pm
14027
In the date section I need to see Jan 1, 2005 as 05001 Mm then 001 is jan 1 feb 1 is 32 dec 31st would be 365 so the date that I need would be 05365 Anyone...
Anon
yertle1302
Offline Send Email
May 4, 2005
2:04 pm
14028
Looking for the SQL that help be get rid of / for example50/300 150/150 0/300 1000/2000 I only want to bring back the numbers leading up to the / 50 150 0 1000...
Anon
yertle1302
Offline Send Email
May 4, 2005
2:42 pm
14029
I am working on creating a report with a number of rows, some of the rows are repeating by their number for example: Number user 1 Smith 1...
purpleliger
Offline Send Email
May 4, 2005
2:48 pm
14030
here is what I ended up doing...I knew that the number before the / would be no greater than 1000 CASE WHEN SUBSTRING ( F , 5 ,1) = '/' THEN SUBSTRING ( F , 1,...
S LaPierre
yertle1302
Offline Send Email
May 4, 2005
3:05 pm
14031
Is the Mac insight helper application from 6.5 compatible with the 6.6.4.50 ODS server version? Our MAC users can't access the reports with the 6.5 insight...
awatkins_45
Offline Send Email
May 4, 2005
3:24 pm
14032
Thanks this worked ... [i].DataModel.Connection.Connected ... ActiveDocument.Sections ... which ... on my ... that i ... each...
Barry
mcfsym
Offline Send Email
May 4, 2005
3:25 pm
14033
var dt = new Date(yourDateField) var yr = String(dt.getFullYear()) var frst = new Date("1/1/" + yr) var dif = Math.floor(dt - frst) if(dif < 10){ dif = "00" +...
Adam Franz
the_adam_franz
Offline Send Email
May 4, 2005
6:43 pm
14034
The syntax and functions available vary from database to database, so in the future please specify what database you're working with when you ask a SQL...
Adam Franz
the_adam_franz
Offline Send Email
May 4, 2005
6:59 pm
14035
Hi Just wonder if there is anyway we can load the brio doc via SQL script instead of using brio server job list to add it one by one. Would appreciate very...
rita ding
rita5792
Offline Send Email
May 4, 2005
7:06 pm
14036
Sort on number then create a computed column that uses: Cume(user, Number) ...and one that uses: var x = Number var y = Next(Number) eval(x != y) IMPORTANT...
Adam Franz
the_adam_franz
Offline Send Email
May 4, 2005
7:07 pm
14037
Why not just create a pivot and put the number in the sidelabel (on the left) and the names in the facts area (on the right). As names are strings, they...
andre_duijn
Offline
May 4, 2005
10:52 pm
14039
If you don't mind doing the seperation as a computed item in the Results section, this is rather elegant: Column_to_be_parsed.split("/")[0]; ... the / would be...
jecwobble
Offline
May 6, 2005
2:52 pm
14040
Hello all! I do not have much experience with Brio and I am faced with a task to format a number into elapsed time in the form h:mm. For example a number 2.75...
kaymakamova
Offline Send Email
May 7, 2005
4:35 pm
14041
Hello Maria, If you're querying an Oracle database, just 'modify' your request line item, and write the syntax of the requested item as you would in an Oracle...
andre_duijn
Offline
May 9, 2005
12:41 am
14043
Hello Andre! I also thought about this but I need a detail rows plus a total row. So if I format them like this: 2:45 (2 hours and 45 minutes), using trunc and...
Maryia, Maryia Kaymak...
kaymakamova
Offline Send Email
May 9, 2005
8:48 am
14044
Maria, perhaps you can modify this script to meet your needs. I use it as a computed statement in tables and pivots, so it might also be used in a report...
jecwobble
Offline
May 9, 2005
1:52 pm
14045
I have a function that does this from seconds that could easily be modified to what you want. What you want, I believe can only be used in a result/table ...
Kevin Sigl
kevinsigl
Offline Send Email
May 9, 2005
2:49 pm
14046
Hi Dear Kevin! Thanks a lot! It was a great help - I did not know where to put the javascript function ;-). Now I got it and I modified the function because I...
Maryia, Maryia Kaymak...
kaymakamova
Offline Send Email
May 10, 2005
10:11 am
14047
I have a couple of quick (I hope) Hyperion questions. I'm trying to create an Organizational Administrator who can add users to two specific groups. In order...
ssimmons53
Offline Send Email
May 10, 2005
12:13 pm
14048
Hi Steve, Both these tasks would be pretty simple using the SDK. You can use a query to return an array of objects (e.g. users or bqy's), then loop through the...
Steve Cavill
stevecavill
Offline Send Email
May 10, 2005
12:23 pm
14049
Steve, I thought about using the SDK for both tasks but had some reservations. Using the SDK to grant list access on all users would require the program to be...
ssimmons53
Offline Send Email
May 10, 2005
12:42 pm
14050
I thought LIST was the default for all users? Rerunning the job shouldn't be too much of a problem, it should only take a few minutes for thousands of users. ...
Steve Cavill
stevecavill
Offline Send Email
May 10, 2005
1:10 pm
Messages 14019 - 14050 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