Posts by "diditho"

If…Then..Else… in MultiDimensionalExpression

A logical script in MDX to perform an “If..Then.. Else..” block. IIf(«Logical Expression», «Numeric/String Expression1», «Numeric/String Expression2») Example1:The following example returns 0 if Measures.CurrentMember is an empty cell, 1 otherwise: IIf(IsEmpty(Measures.CurrentMember), 0, 1) Example2:The following string returns the string “Yes” if Measures.CurrentMember is an empty cell, the string, “No” otherwise: IIf(IsEmpty(Measures.CurrentMember), “Yes”, “No”) Example3: IIf(… Continue reading

Relative Contribution to Total Value (Percentage)

There’s a few scenario to calculate a percentage of a measure in OLAP CUBE (Analysis Service 2000). A Percentage is common calculation in MDX , and it can be solved by divide a measure to  total value (Grand Total). Sample 1:Measures.[Value Contribution to Total]: (Measures.[Value] / (Measures.[Value], Time.[All Time], Products.[All Products],…) Sample 2:Measures.[Value Contribution to… Continue reading

MTB Heroes

Sama seperti cabang olahraga lainnya, Mountain Bike (MTB) juga memiliki icon atau “pahlawan” tersendiri. Tennis punya Maria Sharapova dan Roger Federer. Balap motor punya Valentino Rossi. dll… Jadi, siapa saja para icon atau pahlawan di dunia sepeda gunung ? Dimana mulai mencari ? Tiap tahun Union Cycliste Internationale (UCI) mengadakan perlombaan sepeda gunung bersklala besar… Continue reading

MapGuide Open Source (MGOS)

I always looking for free web gis server with dotnet framework capabilities. Mostly everything that related with dotnet came with a charge. Recently i found that autodesk start their web gis opensource project, the MapGuide Open Source Project (MGOS). Surely it can run on dotnet framework and it’s free. MapGuide Open Source is a web-based… Continue reading

Sharpmap

One of my favorite geographic Information System (gis) web server is Sharpmap. It runs on dotnet 2.0 and using ASP.NET(C#) language. I like Sharmap, because it’s open source and free . The web server it self didn’t need any additional software/component to install. Just pure dotnetframework (v.2.0). So it can be easily deploy on common… Continue reading