If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

Recent posts

#41
Reporting / Parse string at last delimiter...
Last post by Cogency - 20 May 2025 10:59:50 PM
Hi all,

I have a string column with varying lengths of text and varying numbers of spaces.  I'd like to isolate the text following the last space at the end of the string.  Any ideas about how I can do that?

Thanks,

Cogency
#42
Quote from: Eric.Pleiss on 15 May 2025 09:48:14 AMThe MetaManager software allows easy access to user my folders and content, and as an admin you should be able to quickly diagnose the underlying issue, or just delete them for the users as a sys Admin. 

Thanks, Eric. We have MetaManager installed at work. I'll look into that.
#43
Reporting / Format Excel error after updat...
Last post by kyleighterry - 15 May 2025 09:23:24 PM
Hi everyone,

I recently migrated a Cognos report from Cognos 10 to Cognos 11 and I found an issue with the way Excel handles merged cells in a list.

Each column in the list has two data items, with the second item being in a block. In Cognos 10, if Column 1 is empty, only the value of Column 2 will appear in a single cell when exporting to Excel. But in Cognos 11, even if Column 1 is empty, an extra empty cell will be created and merged with the adjacent column.5

Has anyone else encountered this issue? Do you know how to fix it so that the Excel export works as before?

Thanks in advance!
#44
Michael,
You noted "users" above, rather than just a single user, so it seems unlikely that there is a specific corrupted object. 

The MetaManager software allows easy access to user my folders and content, and as an admin you should be able to quickly diagnose the underlying issue, or just delete them for the users as a sys Admin. 

You can download and trial MM for free, and during the trial period you could quickly handle this task.  https://www.bspsoftware.com/products/metamanager/#mm-download

I shot you an email with some more details.
#45
Cognos Analytics / MOVED: Month in bar chart
Last post by MFGF - 14 May 2025 03:39:47 PM
#46
Cognos Analytics / MOVED: Like Any Prompt
Last post by MFGF - 14 May 2025 03:39:15 PM
#47
Reporting / Re: Can you dynamically create...
Last post by MFGF - 14 May 2025 03:34:23 PM
Quote from: cogdevadmin1937 on 17 Apr 2025 10:52:03 AMHello,

I have a report I need to re-create in Cognos Analytics from Excel, that uses a TM1 cube as a data source. Hopefully the screen shot I've included help explain things to the fullest.

I'm running into an issue because the report is going to use 4 different hierarchies within the Time dimension, all with different MUN's. The requirement is the user will choose a Month and Year from a value prompt, take March 2025 for example, and March 2025 needs to be passed to the 4 different hierarchies within the Time dimension. If the user chose April 2024 in the value prompt, April 2024 would need to be passed to the different hierarchies, etc./etc.

Is is possible to create these MUN's in the screen shot based off the value prompt selection?

Thank You in advance.

Mike

Hi,

It depends what your prompt is returning. If it's a full MUN from a different hierarchy, you would have some work to do in order to strip out the relevant Month and Year to insert into new MUNS. If it's returning string values for Month and Year, it would be fairly straightforward to insert these into the MUNs you require. All of this would be done within macros in items in the report, and it would make sense for each macro to reference the parameter(s) for month and year using prompt macros. Most of the MUN would be literal values around this, eg

#'[Income Statement New].[Time].[Time]->[TMR].[Time].[Time].[' + prompt('YearMonthParameter','token','202503') + ' QTD]'#

In the above, the prompt macro references the parameter as the first argument (so use whatever parameter name you need), the data type returned as the second argument, and a default value for the parameter as the third argument.

Hope this gives you a nudge in the right direction.

Cheers!

MF.

#48
Reporting / Re: Month in bar chart
Last post by dougp - 14 May 2025 12:04:03 PM
QuoteMy date field is in the format 2021-04-08T01:56:28.

Do you mean your varchar column contains values that look like dates?  Or are you working with a datetime data type (which doesn't have a format)?  If it's a datetime, can't you just use the numeric format options for the axis labels?
#49
Reporting / Re: Month in bar chart
Last post by bus_pass_man - 14 May 2025 07:58:40 AM
extract ( datepart , datetime_expression ) or _month ( date_expression ) will get you the month number value, which you could then use in a case statement to get the strings you want. 

The question I have is: Why hasn't your modeler done that for you? For that matter, it would seem to me that these sorts of things (month and day names and abbreviated month names ) should be created during ETL, before the modeler has to.
#50
Reporting / Month in bar chart
Last post by yannunderw - 14 May 2025 03:53:36 AM
Hello,
I'm using Cognos Analytic 12.0.3. In a bar chart, I want to display the month (in abbreviated letter format, like Jan., Feb., etc.) on the x-axis. My date field is in the format 2021-04-08T01:56:28. Do you have any suggestions, please?
Thank you.